Skip to content

Commit

Permalink
Test wheels properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Jeffery authored and benjeffery committed Jul 16, 2024
1 parent 1a82a0f commit 2d0a384
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ jobs:
run: |
python -VV
# Install the local wheel
pip install tsinfer --only-binary tsinfer -f .
pip install --no-index --no-deps --find-links=. tsinfer
pip install tsinfer
python -c "import tsinfer"
windows-test:
Expand All @@ -151,7 +152,8 @@ jobs:
#patch-ng required to build lmdb
pip install patch-ng
# Install the local wheel
pip install tsinfer --only-binary tsinfer -f .
pip install --no-index --no-deps --find-links=. tsinfer
pip install tsinfer
python -c "import tsinfer"
manylinux-test:
Expand All @@ -173,7 +175,8 @@ jobs:
run: |
python -VV
# Install the local wheel
pip install tsinfer --only-binary tsinfer -f .
pip install --no-index --no-deps --find-links=. tsinfer
pip install tsinfer
python -c "import tsinfer"
Expand Down

0 comments on commit 2d0a384

Please sign in to comment.