forked from docker/docker-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: upgrade & remove unnecessary dependencies (docker#3014)
The `requirements.txt` and `setup.py` had a lot of extra transitive dependencies to try and address various SSL shortcomings from the Python ecosystem. Thankfully, between modern Python versions (3.6+) and corresponding `requests` versions (2.26+), this is all unnecessary now! As a result, a bunch of transitive dependencies have been removed from `requirements.txt`, the minimum version of `requests` increased, and the `tls` extra made into a no-op. Signed-off-by: Milas Bowman <[email protected]>
- Loading branch information
Showing
5 changed files
with
16 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
appdirs==1.4.3 | ||
asn1crypto==0.22.0 | ||
cffi==1.14.4 | ||
cryptography==3.4.7 | ||
enum34==1.1.6 | ||
idna==2.5 | ||
ipaddress==1.0.18 | ||
packaging==21.3 | ||
paramiko==2.10.1 | ||
pycparser==2.17 | ||
pyOpenSSL==18.0.0 | ||
pyparsing==2.2.0 | ||
paramiko==2.11.0 | ||
pywin32==304; sys_platform == 'win32' | ||
requests==2.26.0 | ||
urllib3==1.26.5 | ||
requests==2.28.1 | ||
urllib3==1.26.11 | ||
websocket-client==0.56.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
setuptools==58.2.0 | ||
coverage==6.0.1 | ||
setuptools==63.2.0 | ||
coverage==6.4.2 | ||
flake8==4.0.1 | ||
pytest==6.2.5 | ||
pytest==7.1.2 | ||
pytest-cov==3.0.0 | ||
pytest-timeout==2.0.1 | ||
pytest-timeout==2.1.0 |