From c550bc23dc44185358e8858a5a88d87188f4584d Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Thu, 7 Oct 2021 09:04:39 +0200 Subject: [PATCH] Update certifi, requests and urllib3 dependencies Resolves the following messages by PIP: gophish 0.5.1 requires certifi==2020.6.20, but you have certifi 2021.5.30 which is incompatible. gophish 0.5.1 requires requests==2.24.0, but you have requests 2.26.0 which is incompatible. gophish 0.5.1 requires urllib3==1.25.10, but you have urllib3 1.26.7 which is incompatible. Fix #30 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9fc8a07..2a0dcf8 100644 --- a/setup.py +++ b/setup.py @@ -23,14 +23,14 @@ ], install_requires=[ "appdirs==1.4.4", - "certifi==2020.6.20", + "certifi==2021.5.30", "chardet==3.0.4", "idna==2.10", "packaging==20.4", "pyparsing==2.4.7", "python-dateutil==2.8.1", - "requests==2.24.0", + "requests==2.26.0", "six==1.15.0", - "urllib3==1.25.10" + "urllib3==1.26.7" ], )