-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: use CIBW_BUILD to specify Python build version
- Loading branch information
Daniel Stoops
committed
Oct 1, 2024
1 parent
c4a31a7
commit 57c0559
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,10 +29,9 @@ jobs: | |
path: dist/ | ||
|
||
build_wheels: | ||
name: Build wheels on ${{matrix.os}} for Python `${{matrix.python-version}} 🎡 | ||
name: Build wheels on ${{matrix.os}} 🎡 | ||
strategy: | ||
matrix: | ||
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | ||
# os: [ubuntu-latest, windows-latest, macos-13, macos-14] | ||
os: [ubuntu-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -41,7 +40,7 @@ jobs: | |
|
||
- name: Build wheels 🎡 | ||
env: | ||
# CIBW_BUILD: "cp311-*" | ||
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-* cp312-*' | ||
CIBW_SKIP: "pp* *-win32 *_i686" | ||
uses: pypa/[email protected] | ||
|
||
|