-
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.
fix: work around problems with urllib3 2.0
urllib3 2.0 (<https://urllib3.readthedocs.io/en/stable/v2-migration-guide.html>) breaks <ansible-collections/community.docker#611> via <docker/docker-py#3113>.
- Loading branch information
1 parent
05ced9e
commit 134c2bb
Showing
1 changed file
with
1 addition
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ DEBIAN_FRONTEND=noninteractive apt-get install -y python-is-python3 \ | |
|| update-alternatives --install /usr/bin/python python /usr/bin/python3 100 | ||
|
||
pip3 install docker-compose ansible | ||
pip3 install "urllib3<2" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
rafaelgieschke
Author
Contributor
|
You should probably install
requests < 2.29.0
instead, as that seems to be the real problem.