Skip to content

Commit 062d73d

Browse files
authored
Merge pull request #866 from dopplershift/pin-urllib3
CI: Pin urllib3 to v2.2.3
2 parents ddfc3ec + 83dbe25 commit 062d73d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/tests-pypi.yml

+3
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ jobs:
6565
dep = dep.split(';')[0]
6666
if 'siphon' not in dep:
6767
out.write(dep.replace('>=', '==') + '\n')
68+
# Needed until vcrpy >=6.0.2 comes out with support for urllib3>=2.3
69+
if fname == 'requirements.txt':
70+
out.write('urllib3==2.2.3\n')
6871
EOF
6972
7073
- name: Install from PyPI

ci/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ numpy==2.2.0
33
pandas==2.2.3
44
protobuf==5.28.3
55
requests==2.32.3
6+
urllib3==2.2.3

0 commit comments

Comments
 (0)