Skip to content

Commit efd3fd1

Browse files
authored
ci: Python 3.14 support (#150)
* ci(python): python 3.14 support * ci(python): use newer macos intel image macos-13 is shutting down [ci test build]
1 parent 649dbbd commit efd3fd1

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,8 @@ on:
99
- main
1010
- develop
1111
- release-*
12-
- spm # TODO: remove before merging
1312
pull_request:
14-
branches:
15-
- develop
16-
- release-*
17-
- spm # TODO: remove before merging
13+
branches: ["*"]
1814
release:
1915
types:
2016
- published
@@ -79,7 +75,7 @@ jobs:
7975
fail-fast: true
8076
matrix:
8177
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
82-
python-version: ["3.8", "3.13.3"] # 3.13.4 has a windows build bug: https://github.com/python/cpython/issues/135151
78+
python-version: ["3.8", "3.14"]
8379
exclude:
8480
# Latest macos runner does not support older Python versions
8581
# https://github.com/actions/setup-python/issues/852
@@ -123,12 +119,12 @@ jobs:
123119
- windows-latest
124120
- windows-11-arm
125121
- macos-latest
126-
- macos-13 # Intel builds
122+
- macos-15-intel # Intel builds
127123
steps:
128124
- uses: actions/checkout@v4
129125
with:
130126
submodules: true
131-
- uses: pypa/cibuildwheel@v3.0.0
127+
- uses: pypa/cibuildwheel@v3.2.1
132128
env:
133129
CIBW_ARCHS_MACOS: ${{ runner.arch == 'ARM64' && 'auto universal2' || 'auto' }}
134130
with:

0 commit comments

Comments
 (0)