Skip to content

Commit

Permalink
Merge pull request #866 from dopplershift/pin-urllib3
Browse files Browse the repository at this point in the history
CI: Pin urllib3 to v2.2.3
  • Loading branch information
dopplershift authored Dec 27, 2024
2 parents ddfc3ec + 83dbe25 commit 062d73d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/tests-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ jobs:
dep = dep.split(';')[0]
if 'siphon' not in dep:
out.write(dep.replace('>=', '==') + '\n')
# Needed until vcrpy >=6.0.2 comes out with support for urllib3>=2.3
if fname == 'requirements.txt':
out.write('urllib3==2.2.3\n')
EOF
- name: Install from PyPI
Expand Down
1 change: 1 addition & 0 deletions ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ numpy==2.2.0
pandas==2.2.3
protobuf==5.28.3
requests==2.32.3
urllib3==2.2.3

0 comments on commit 062d73d

Please sign in to comment.