Merge branch 'main' into nogil

This commit is contained in:
Charlie Lin 2025-09-27 13:21:54 -04:00 committed by GitHub
commit 716e08c780
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View file

@ -11,6 +11,11 @@ jobs:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
py: ["3.14", "3.14t", "3.13", "3.13t", "3.12", "3.11", "3.10", "3.9"]
exclude:
- os: windows-11-arm
py: "3.9"
- os: windows-11-arm
py: "3.10"
runs-on: ${{ matrix.os }}
name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}
@ -29,7 +34,8 @@ jobs:
- name: Prepare
shell: bash
run: |
pip install -r requirements.txt pytest
python -m pip install -U pip
python -m pip install -r requirements.txt pytest
- name: Install pytest-run-parallel under free-threading
if: contains(matrix.py, 't')

View file

@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# macos-13 is for intel
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "macos-13", "macos-latest"]
os: ["ubuntu-24.04", "ubuntu-24.04-arm", "windows-latest", "windows-11-arm", "macos-13", "macos-latest"]
runs-on: ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }}
@ -33,7 +33,7 @@ jobs:
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"
CIBW_SKIP: "pp* cp38-macosx_*"
CIBW_SKIP: "pp* cp38-* cp39-win_arm64 cp310-win_arm64"
CIBW_ENABLE: cpython-freethreading
- name: Build sdist