-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing 3.13 wheel on windows (#54)
* Set up 3.13t before 3.13 * Separate out 3.13t maturin-action * Bump pyo3 to 0.23.4
- Loading branch information
Showing
2 changed files
with
13 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 |
---|---|---|
|
@@ -62,6 +62,17 @@ jobs: | |
with: | ||
python-version: '3.13' | ||
architecture: ${{ ( startsWith(matrix.os, 'windows') && matrix.target == 'i686' ) && 'x86' || null }} | ||
|
||
- uses: PyO3/[email protected] | ||
with: | ||
target: ${{ matrix.target }} | ||
manylinux: ${{ matrix.manylinux }} | ||
# keep python versions in sync with tests.yml | ||
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 3.13' | ||
rust-toolchain: stable | ||
docker-options: -e CI | ||
|
||
# the following two steps are separated out because of a setup-python issue on windows causing maturin-action to pick up 3.13t exe instead of 3.13t exe https://github.com/oconnor663/blake3-py/issues/52 | ||
- uses: Quansight-Labs/setup-python@v5 # 3.13t support not yet merged ref https://github.com/actions/setup-python/pull/973#issuecomment-2495900996 | ||
with: | ||
python-version: '3.13t' | ||
|
@@ -72,7 +83,7 @@ jobs: | |
target: ${{ matrix.target }} | ||
manylinux: ${{ matrix.manylinux }} | ||
# keep python versions in sync with tests.yml | ||
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 3.13 3.13t' | ||
args: --release --out dist --interpreter '3.13t' | ||
rust-toolchain: stable | ||
docker-options: -e CI | ||
|
||
|
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