Skip to content

Commit 0eb9fa8

Browse files
authored
support Python 3.14 (#31)
1 parent 8cbc887 commit 0eb9fa8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: astral-sh/setup-uv@v6
2525

2626
- name: Build wheels on ${{ matrix.os }}-${{ matrix.cibw_archs }}
27-
uses: pypa/cibuildwheel@v2.23
27+
uses: pypa/cibuildwheel@v3.1.4
2828
env:
2929
CIBW_BUILD_FRONTEND: build[uv]
3030
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"

.github/workflows/unittest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: matrix.install_from == 'source'
3737
shell: bash
3838
run: |
39-
for version in 3.9 3.10 3.11 3.12 3.13 3.13t
39+
for version in 3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t
4040
do
4141
uv run --with ./PythonAPI --with '${{ matrix.numpy }}' --python $version --managed-python tests/test_cases.py
4242
done
@@ -46,7 +46,7 @@ jobs:
4646
shell: bash
4747
run: |
4848
uv build --sdist ./PythonAPI
49-
for version in 3.9 3.10 3.11 3.12 3.13 3.13t
49+
for version in 3.9 3.10 3.11 3.12 3.13 3.13t 3.14 3.14t
5050
do
5151
uv run --with ./PythonAPI/dist/*.tar.gz --with '${{ matrix.numpy }}' --python $version --managed-python tests/test_cases.py
5252
done

0 commit comments

Comments
 (0)