File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,10 @@ jobs:
4444 shell : bash
4545 # - Always omit musllinux_aarch64 because it's slow and niche
4646 # - On PPs, omit musllinux for speed
47- # - On PRs, run just oldest and newest Python versions (3.11 is the oldest abi3 target)
47+ # - On PRs, run just oldest and newest Python versions (3.12 is the oldest abi3 target)
4848 run : |
4949 if [[ "${{ github.event_name }}" == "pull_request" ]]; then
50- CIBW_SKIP="cp3{12 ,13}-* *musllinux*"
50+ CIBW_SKIP="cp3{11 ,13}-* *musllinux*"
5151 else
5252 CIBW_SKIP="*musllinux_aarch64"
5353 fi
Original file line number Diff line number Diff line change 3333USE_PY_LIMITED_API = (
3434 # require opt-in (builds are specialized by default)
3535 os .getenv ('CFTIME_LIMITED_API' , '0' ) == '1'
36- # Cython + numpy + limited API de facto requires Python >=3.11
37- and sys .version_info >= (3 , 11 )
36+ # Cython + numpy + limited API de facto requires Python >=3.12
37+ and sys .version_info >= (3 , 12 )
3838 # as of Python 3.14t, free-threaded builds don't support the limited API
3939 and not sysconfig .get_config_var ("Py_GIL_DISABLED" )
4040)
You can’t perform that action at this time.
0 commit comments