Skip to content

Commit

Permalink
Install from the built wheel, to bypass the Cython issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Jun 29, 2023
1 parent 72603c4 commit 8ea4dd9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ jobs:
if: ${{ ! startsWith(runner.os, 'Mac') }}
run: |
python setup.py bdist_wheel
python -m pip install -U -e ".[test,docs,all_tested_drivers]"
WHL=$(ls dist/*whl)
python -m pip install -U "$WHL[test,docs,all_tested_drivers]"
env:
# Ensure we test with assertions enabled.
# As opposed to the manylinux builds, which we distribute and
Expand All @@ -152,7 +153,8 @@ jobs:
if: startsWith(runner.os, 'Mac')
run: |
python setup.py bdist_wheel
python -m pip install -U -e ".[test,docs,all_tested_drivers]"
WHL=$(ls dist/*whl)
python -m pip install -U "$WHL[test,docs,all_tested_drivers]"
env:
# Unlike the above, we are actually distributing these
# wheels, so they need to be built for production use.
Expand Down

0 comments on commit 8ea4dd9

Please sign in to comment.