Skip to content

Commit

Permalink
🔧 win+arm64+3.13t issue persist still[...]
Browse files Browse the repository at this point in the history
  • Loading branch information
Ousret committed Jan 12, 2025
1 parent f72f6e2 commit 7b1d597
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,18 +159,28 @@ jobs:
python-version: ${{ matrix.python_version }}
architecture: x64
- uses: Quansight-Labs/setup-python@v5
if: matrix.python_version == '3.13t'
if: matrix.python_version == '3.13t' && matrix.target == 'x64'
with:
python-version: '3.13t'
architecture: x64
- name: Build wheels
uses: PyO3/maturin-action@v1
if: matrix.python_version != '3.13t' && matrix.target != 'aarch64'
env:
UNSAFE_PYO3_SKIP_VERSION_CHECK: 1
with:
target: ${{ matrix.target }}
args: --release --out dist
sccache: 'false'
- name: Build wheels
uses: PyO3/maturin-action@v1
if: matrix.python_version == '3.13t' && matrix.target == 'aarch64'
env:
PYO3_CROSS: 1
with:
target: ${{ matrix.target }}
args: --release --out dist -i 3.13t
sccache: 'false'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 7b1d597

Please sign in to comment.