Skip to content

Commit 1503c0d

Browse files
Copilotfruch
andcommitted
Add Python 3.14 support: update cibuildwheel and add to CI matrix
Co-authored-by: fruch <[email protected]>
1 parent fd962ab commit 1503c0d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
java-version: [8]
32-
python-version: ["3.9", "3.11", "3.12", "3.13"]
32+
python-version: ["3.9", "3.11", "3.12", "3.13", "3.14"]
3333
event_loop_manager: ["libev", "asyncio", "asyncore"]
3434
exclude:
3535
- python-version: "3.12"
3636
event_loop_manager: "asyncore"
3737
- python-version: "3.13"
3838
event_loop_manager: "asyncore"
39+
- python-version: "3.14"
40+
event_loop_manager: "asyncore"
3941

4042
steps:
4143
- uses: actions/checkout@v5

.github/workflows/lib-build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110

111111
- name: Install cibuildwheel
112112
run: |
113-
uv tool install 'cibuildwheel==2.22.0'
113+
uv tool install 'cibuildwheel==3.2.1'
114114
115115
- name: Install OpenSSL for Windows
116116
if: runner.os == 'Windows'

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers = [
1414
'Programming Language :: Python :: 3.11',
1515
'Programming Language :: Python :: 3.12',
1616
'Programming Language :: Python :: 3.13',
17+
'Programming Language :: Python :: 3.14',
1718
'Programming Language :: Python :: Implementation :: CPython',
1819
'Programming Language :: Python :: Implementation :: PyPy',
1920
'Topic :: Software Development :: Libraries :: Python Modules',

0 commit comments

Comments
 (0)