Skip to content

Commit 12ecfe3

Browse files
committed
ci: use pip constraints for PyPy builds
This feels strictly better. It may or may not fully fix our busted CI jobs.
1 parent 39c5c6a commit 12ecfe3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Build
4242
run: |
43-
python -m pip wheel -w wheelhouse .
43+
python -m pip -v wheel --constraint ci/constraints.txt -w wheelhouse .
4444
4545
test:
4646
strategy:
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Build
8888
run: |
89-
python -m pip install -e .
89+
python -m pip -v install --constraint ci/constraints.txt -e .
9090
9191
- name: Test
9292
run: |

0 commit comments

Comments
 (0)