You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dependencies certifi,requests and urllib3 have newer versions. Now I get the following errors:
ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency conflicts.
We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default.
gophish 0.5.1 requires certifi==2020.6.20, but you'll have certifi 2020.11.8 which is incompatible.
gophish 0.5.1 requires requests==2.24.0, but you'll have requests 2.25.0 which is incompatible.
gophish 0.5.1 requires urllib3==1.25.10, but you'll have urllib3 1.26.2 which is incompatible.
Perhaps it would be a good idea to specify the requirements of the package in a range: "requests>=2,<3"
That way the required dependencies don't need to be updated in setup.py every time that there is a minor update of a package.
The text was updated successfully, but these errors were encountered:
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.
Fixgophish#30
JJK96
linked a pull request
Oct 7, 2021
that will
close
this issue
The dependencies
certifi
,requests
andurllib3
have newer versions. Now I get the following errors:Perhaps it would be a good idea to specify the requirements of the package in a range:
"requests>=2,<3"
That way the required dependencies don't need to be updated in
setup.py
every time that there is a minor update of a package.The text was updated successfully, but these errors were encountered: