We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ddfc3ec + 83dbe25 commit 062d73dCopy full SHA for 062d73d
.github/workflows/tests-pypi.yml
@@ -65,6 +65,9 @@ jobs:
65
dep = dep.split(';')[0]
66
if 'siphon' not in dep:
67
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')
71
EOF
72
73
- name: Install from PyPI
ci/requirements.txt
@@ -3,3 +3,4 @@ numpy==2.2.0
3
pandas==2.2.3
4
protobuf==5.28.3
5
requests==2.32.3
6
+urllib3==2.2.3
0 commit comments