Skip to content

Commit

Permalink
Fix issue with requests and docker
Browse files Browse the repository at this point in the history
See: docker/docker-py#3113

For more details
  • Loading branch information
Ce11an committed Mar 10, 2024
1 parent 926f384 commit 4380f96
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- run: pip install docker requests
# Issue with requests < 2.29.0 and docker. See: https://github.com/docker/docker-py/issues/3113
- run: pip install docker requests==2.28.2

- run: pip install -e .
env:
Expand Down Expand Up @@ -86,7 +87,8 @@ jobs:
if: ${{ matrix.os == 'windows' }}
run: echo "$APPDATA\Python\Scripts" >> $GITHUB_PATH

- run: pip install docker requests
# Issue with requests < 2.29.0 and docker. See: https://github.com/docker/docker-py/issues/3113
- run: pip install docker requests==2.28.2

- run: pip install -e .
env:
Expand All @@ -98,4 +100,3 @@ jobs:

- run: cargo test


0 comments on commit 4380f96

Please sign in to comment.