Skip to content

Commit 2ff85f7

Browse files
ci: remove python3.14
1 parent da7cf3b commit 2ff85f7

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build-python-wheel.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [ubuntu-20.04]
1616
arch: [aarch64]
17-
python: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13, 3.14]
17+
python: [3.8, 3.9, "3.10", 3.11, 3.12]
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python
3131
uses: actions/setup-python@v5
3232
with:
33-
python-version: "3.10" # Controls the Python version for running cibuildwheel
33+
python-version: "3.11" # Controls the Python version for running cibuildwheel
3434

3535
- name: Install cibuildwheel
3636
run: |
@@ -41,12 +41,11 @@ jobs:
4141
python -m cibuildwheel --output-dir wheelhouse
4242
env:
4343
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
44-
CIBW_BUILD: cp${{ matrix.python == '3.10' && '310' || matrix.python == '3.11' && '311' || matrix.python == '3.12' && '312' || matrix.python == '3.13' && '313' || matrix.python == '3.14' && '314' || matrix.python == '3.8' && '38' || matrix.python == '3.9' && '39' }}-*
44+
CIBW_BUILD: cp${{ matrix.python == '3.10' && '310' || matrix.python == '3.11' && '311' || matrix.python == '3.12' && '312' || matrix.python == '3.8' && '38' || matrix.python == '3.9' && '39' }}-*
4545
CIBW_SKIP: "*-musllinux*" # Skips musllinux, only builds manylinux
46-
# If you want to skip tests (if tests run too slow in ARM emulators)
47-
CIBW_TEST_SKIP: "*"
48-
# Pre-installs dependencies
46+
CIBW_TEST_SKIP: "*" # Skip tests for faster builds
4947
CIBW_BEFORE_BUILD: pip install pybind11 scikit-build-core
48+
CIBW_ENVIRONMENT: "CIBW_BUILD=cp${{ matrix.python == '3.10' && '310' || matrix.python == '3.11' && '311' || matrix.python == '3.12' && '312' || matrix.python == '3.8' && '38' || matrix.python == '3.9' && '39' }}-*"
5049

5150
- name: Upload wheels
5251
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)