Skip to content

Commit 141eef0

Browse files
benjefferymergify[bot]
authored andcommitted
Fix local wheel install
1 parent 6f80cf2 commit 141eef0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
run: |
155155
python -VV
156156
# Install the local wheel
157-
pip install tskit --only-binary tskit -f .
157+
pip install dist/tskit-*.whl
158158
python -c "import tskit"
159159
160160
windows-test:
@@ -177,7 +177,7 @@ jobs:
177177
run: |
178178
python -VV
179179
# Install the local wheel
180-
pip install tskit --only-binary tskit -f .
180+
pip install dist/tskit-*.whl
181181
python -c "import tskit"
182182
183183
manylinux-test:
@@ -199,7 +199,7 @@ jobs:
199199
run: |
200200
python -VV
201201
# Install the local wheel
202-
pip install tskit --only-binary tskit -f .
202+
pip install dist/tskit-*.whl
203203
python -c "import tskit"
204204
205205

0 commit comments

Comments
 (0)