Skip to content

Commit

Permalink
Add missing 3.11 Mac universal wheel (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger authored Nov 27, 2022
1 parent 62458cd commit 80253c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
run: |
pip install cramjam --no-index --find-links dist --force-reinstall
- name: Build wheels - universal2
if: ${{ matrix.python-version >= '3.8' || matrix.python-version == '3.10' }}
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11"]'), matrix.python-version) }}
uses: PyO3/maturin-action@v1
with:
args: -i python --release --universal2 --out dist
- name: Install built wheel - universal2
if: ${{ matrix.python-version >= '3.8' }}
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11"]'), matrix.python-version) }}
run: |
pip install cramjam --no-index --find-links dist --force-reinstall
- name: Python UnitTest
Expand Down

0 comments on commit 80253c8

Please sign in to comment.