Skip to content

Commit 3e7ed80

Browse files
authored
Merge pull request #5 from congzhangzh/claude/add-version-3.14-support-v4vub
CI: Add Python 3.14 testing and update cibuildwheel
2 parents fd999a3 + e6a99e0 commit 3e7ed80

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Build
5858
# https://github.com/pypa/cibuildwheel
59-
uses: pypa/cibuildwheel@v2.23.2
59+
uses: pypa/cibuildwheel@v3.3.1
6060
env:
6161
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp314-*"
6262
CIBW_ARCHS_MACOS: "x86_64 arm64"

.github/workflows/test.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, windows-latest, macos-latest]
14+
python-version: ["3.13", "3.14"]
1415

1516
runs-on: ${{ matrix.os }}
16-
17+
1718
env:
1819
CI: true
19-
20+
2021
steps:
2122
- uses: actions/checkout@v4
22-
23-
- name: Set up Python 3.13
23+
24+
- name: Set up Python ${{ matrix.python-version }}
2425
uses: actions/setup-python@v4
2526
with:
26-
python-version: "3.13"
27+
python-version: "${{ matrix.python-version }}"
2728

2829
- name: Install dependencies (Linux)
2930
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)