diff options
author | Milas Bowman <milas.bowman@docker.com> | 2022-07-28 08:32:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 08:32:00 -0400 |
commit | be942f83902fbd02e05270c39b6917880939c165 (patch) | |
tree | bf7b81f3a38dc94386abe63aef8bb4ce4f8d22bb /test-requirements.txt | |
parent | bf026265e0adfd862373a601ed99e4f3ac8b3bd0 (diff) | |
download | docker-py-be942f83902fbd02e05270c39b6917880939c165.tar.gz |
deps: upgrade & remove unnecessary dependencies (#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 <milas.bowman@docker.com>
Diffstat (limited to 'test-requirements.txt')
-rw-r--r-- | test-requirements.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test-requirements.txt b/test-requirements.txt index ccc97be..979b291 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -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 |