Skip to content

Commit 716e08c

Browse files
authored
Merge branch 'main' into nogil
2 parents 48c56cd + c2a9f1f commit 716e08c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
matrix:
1212
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
1313
py: ["3.14", "3.14t", "3.13", "3.13t", "3.12", "3.11", "3.10", "3.9"]
14+
exclude:
15+
- os: windows-11-arm
16+
py: "3.9"
17+
- os: windows-11-arm
18+
py: "3.10"
1419

1520
runs-on: ${{ matrix.os }}
1621
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@@ -29,7 +34,8 @@ jobs:
2934
- name: Prepare
3035
shell: bash
3136
run: |
32-
pip install -r requirements.txt pytest
37+
python -m pip install -U pip
38+
python -m pip install -r requirements.txt pytest
3339
3440
- name: Install pytest-run-parallel under free-threading
3541
if: contains(matrix.py, 't')

.github/workflows/wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
# macos-13 is for intel
15-
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "macos-13", "macos-latest"]
15+
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "windows-11-arm", "macos-13", "macos-latest"]
1616
runs-on: ${{ matrix.os }}
1717
name: Build wheels on ${{ matrix.os }}
1818

@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CIBW_TEST_REQUIRES: "pytest"
3535
CIBW_TEST_COMMAND: "pytest {package}/test"
36-
CIBW_SKIP: "pp* cp38-macosx_*"
36+
CIBW_SKIP: "pp* cp38-* cp39-win_arm64 cp310-win_arm64"
3737
CIBW_ENABLE: cpython-freethreading
3838

3939
- name: Build sdist

0 commit comments

Comments
 (0)