Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Not supported URL scheme http+docker #465

Merged
merged 4 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading