Skip to content

Commit 2d0a384

Browse files
Ben Jefferybenjeffery
authored andcommitted
Test wheels properly
1 parent 1a82a0f commit 2d0a384

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ jobs:
126126
run: |
127127
python -VV
128128
# Install the local wheel
129-
pip install tsinfer --only-binary tsinfer -f .
129+
pip install --no-index --no-deps --find-links=. tsinfer
130+
pip install tsinfer
130131
python -c "import tsinfer"
131132
132133
windows-test:
@@ -151,7 +152,8 @@ jobs:
151152
#patch-ng required to build lmdb
152153
pip install patch-ng
153154
# Install the local wheel
154-
pip install tsinfer --only-binary tsinfer -f .
155+
pip install --no-index --no-deps --find-links=. tsinfer
156+
pip install tsinfer
155157
python -c "import tsinfer"
156158
157159
manylinux-test:
@@ -173,7 +175,8 @@ jobs:
173175
run: |
174176
python -VV
175177
# Install the local wheel
176-
pip install tsinfer --only-binary tsinfer -f .
178+
pip install --no-index --no-deps --find-links=. tsinfer
179+
pip install tsinfer
177180
python -c "import tsinfer"
178181
179182

0 commit comments

Comments
 (0)