From c550bc23dc44185358e8858a5a88d87188f4584d Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Thu, 7 Oct 2021 09:04:39 +0200 Subject: [PATCH 1/5] 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" ], ) From e50f37a7eb2c72cf6bc0224eab4a089013911f99 Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Wed, 23 Mar 2022 14:46:42 +0100 Subject: [PATCH 2/5] Set version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a0dcf8..e9796ee 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="gophish", packages=["gophish", "gophish.api"], - version="0.5.1", + version="0.5.2", description="Python API Client for Gophish", author="Jordan Wright", author_email="python@getgophish.com", From 94929e396839c2b1fcde508fa190b63a397aaedd Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Wed, 11 Jan 2023 10:08:02 +0100 Subject: [PATCH 3/5] Update certifi dependency --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e9796ee..dfe6c94 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ ], install_requires=[ "appdirs==1.4.4", - "certifi==2021.5.30", + "certifi", "chardet==3.0.4", "idna==2.10", "packaging==20.4", From 2cb8bda3f5b79e9795b4e06db54de2fd45517b0d Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Wed, 11 Jan 2023 10:09:48 +0100 Subject: [PATCH 4/5] Bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dfe6c94..59a02d9 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="gophish", packages=["gophish", "gophish.api"], - version="0.5.2", + version="0.5.3", description="Python API Client for Gophish", author="Jordan Wright", author_email="python@getgophish.com", From 56e3b3ad49abc80360a3493a70a28088d8b6b549 Mon Sep 17 00:00:00 2001 From: Jan-Jaap Korpershoek Date: Wed, 11 Jan 2023 10:51:29 +0100 Subject: [PATCH 5/5] Relax all requirements --- setup.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 59a02d9..c20799b 100644 --- a/setup.py +++ b/setup.py @@ -22,15 +22,15 @@ "Programming Language :: Python :: 3.3", ], install_requires=[ - "appdirs==1.4.4", + "appdirs>=1.4.4", "certifi", - "chardet==3.0.4", - "idna==2.10", - "packaging==20.4", - "pyparsing==2.4.7", - "python-dateutil==2.8.1", - "requests==2.26.0", - "six==1.15.0", - "urllib3==1.26.7" + "chardet>=3.0.4", + "idna>=2.10", + "packaging>=20.4", + "pyparsing>=2.4.7", + "python-dateutil>=2.8.1", + "requests", + "six>=1.15.0", + "urllib3" ], )