Skip to content

Commit

Permalink
Disable Windows support until setuptools has been 'fixed'
Browse files Browse the repository at this point in the history
  • Loading branch information
lysnikolaou committed Dec 6, 2024
1 parent 513e247 commit 01763db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', '3.13t', 'pypy-3.10']
exclude:
# TODO: Reenable this once there's a setuptools release that sets Py_GIL_DISABLED
# correctly on Windows
- os: windows-latest
python-version: 3.13t
steps:
- uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ jobs:
- name: Build wheels
if: matrix.manylinux_version == 'manylinux2014'
env:
CIBW_BUILD: "cp311-* cp312-* cp313-* pp310-*"
CIBW_BUILD: "cp311-* cp312-* cp313-* cp313t-* pp310-*"
CIBW_SKIP: "cp313t-win*"
CIBW_ENABLE: python-freethreading
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
CIBW_ARCHS_LINUX: ${{ matrix.archs }}
Expand All @@ -121,7 +122,6 @@ jobs:
if: runner.os == 'Windows' && matrix.archs == 'ARM64'
env:
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-*"
CIBW_ENABLE: python-freethreading
CIBW_ARCHS_WINDOWS: ${{ matrix.archs }}
# It is not yet possible to run ARM64 tests, only cross-compile them.
CIBW_TEST_SKIP: "*-win_arm64"
Expand Down

0 comments on commit 01763db

Please sign in to comment.