File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,8 @@ jobs:
126
126
run : |
127
127
python -VV
128
128
# 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
130
131
python -c "import tsinfer"
131
132
132
133
windows-test :
@@ -151,7 +152,8 @@ jobs:
151
152
#patch-ng required to build lmdb
152
153
pip install patch-ng
153
154
# 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
155
157
python -c "import tsinfer"
156
158
157
159
manylinux-test :
@@ -173,7 +175,8 @@ jobs:
173
175
run : |
174
176
python -VV
175
177
# 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
177
180
python -c "import tsinfer"
178
181
179
182
You can’t perform that action at this time.
0 commit comments