[ci] Fix broken Windows PyPy tests (#17347)

Workaround for https://github.com/actions/setup-python/issues/1348

Authored by: bashonly
This commit is contained in:
bashonly
2026-08-04 00:01:09 -05:00
committed by GitHub
parent fdcc954df4
commit d798b9b8fb
2 changed files with 27 additions and 10 deletions
+2 -1
View File
@@ -85,7 +85,8 @@ jobs:
- name: Install test requirements (PyPy)
if: ${{ startsWith(matrix.python-version, 'pypy') }}
run: |
python -m pip install -U --require-hashes -r "bundle/requirements/pip.txt"
# Upgrading/downgrading pip on Windows with actions/setup-python's PyPy can cause breakage
# See https://github.com/actions/setup-python/issues/1348
python -m pip install -U --require-hashes -r "bundle/requirements/test.txt"
python -m pip install -U --require-hashes -r "bundle/requirements/default.txt"