Skip to content

Commit 5c6d341

Browse files
committed
ci: use pip constraints for PyPy builds
This feels strictly better. It doesn't fix the busted CI builds. But the new log output from verbose mode shows it is ignoring our constraints file and installing a new setuptools version which we're not compatible with. Fun times.
1 parent 4e3449f commit 5c6d341

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)