Skip to content

Commit

Permalink
Fix Not supported URL scheme http+docker (#465)
Browse files Browse the repository at this point in the history
* Fix Not supported URL scheme http+docker

```
docker.errors.DockerException: Error while fetching server API version:
Not supported URL scheme http+docker
```
See docker/docker-py#3256 for details.

* Sync dev and install requirements
  • Loading branch information
akuzminsky authored Sep 15, 2024
1 parent 460b01d commit 2f17db0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ psutil ~= 5.4
pyasn1 ~= 0.4
datadog ~= 0.22
paramiko ~= 3.4
requests < 2.32.0 # See https://github.com/docker/docker-py/issues/3256
google ~= 3.0
google-cloud-storage ~= 2.3.0
statsd ~= 3.3
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,9 @@ pynacl==1.5.0
# via paramiko
python-dateutil==2.9.0.post0
# via botocore
requests==2.32.3
requests==2.31.0
# via
# -r requirements.in
# azure-core
# datadog
# google-api-core
Expand Down
1 change: 1 addition & 0 deletions requirements_dev.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ pytest ~= 7.1
pytest-cov ~= 3.0
pytest-timeout ~= 2.1
python-magic == 0.4.18
requests < 2.32.0 # See https://github.com/docker/docker-py/issues/3256
runlike ~= 1.4
yamllint ~= 1.23
3 changes: 2 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,9 @@ pyyaml==6.0.2
# via
# responses
# yamllint
requests==2.32.3
requests==2.31.0
# via
# -r requirements_dev.in
# docker
# moto
# responses
Expand Down

0 comments on commit 2f17db0

Please sign in to comment.