-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
something must have changed github-side
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ jobs: | |
- { cp: "cp310", rel: "3.10" } | ||
- { cp: "cp311", rel: "3.11" } | ||
- { cp: "cp312", rel: "3.12" } | ||
- { cp: "cp313", rel: "3.13" } | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -53,7 +54,7 @@ jobs: | |
CIBW_SKIP: "*-win* *-manylinux_i686 pp*" | ||
|
||
- name: Build wheels (macOS) | ||
if: ${{ runner.os == 'macOS' && runner.python != "3.8" }} | ||
if: ${{ runner.os == 'macOS' && runner.python != '3.8' }} | ||
run: python -m cibuildwheel --output-dir wheelhouse | ||
env: | ||
CIBW_BUILD: ${{ matrix.python.cp }}-${{ matrix.buildplat.sys }}* | ||
|
@@ -64,7 +65,7 @@ jobs: | |
brew install frog | ||
- uses: actions/upload-artifact@v4 | ||
if: ${{ ! (runner.os == 'macOS' && runner.python == "3.8") }} | ||
if: ${{ ! (runner.os == 'macOS' && runner.python == '3.8') }} | ||
with: | ||
name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} | ||
path: ./wheelhouse/*.whl |