Skip to content

Commit 18f3434

Browse files
jensensclaude
andcommitted
Add Python 3.14 support to CI, release wheels, and classifiers
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a985267 commit 18f3434

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.10", "3.11", "3.12", "3.13"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1414
steps:
1515
- uses: actions/checkout@v4
1616

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
env:
1515
# Python versions to build wheels for (must match pyproject.toml requires-python
1616
# and be supported by the PyO3 version in Cargo.toml)
17-
PYTHON_TARGETS: "-i 3.10 -i 3.11 -i 3.12 -i 3.13"
17+
PYTHON_TARGETS: "-i 3.10 -i 3.11 -i 3.12 -i 3.13 -i 3.14"
1818

1919
jobs:
2020
ci:

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Initial beta release.
1818
- Full roundtrip fidelity: encode to JSON and decode back produces identical pickle bytes
1919
- Direct PickleValue to PyObject conversion (bypasses serde_json intermediate layer)
2020
- Direct PyObject to pickle bytes encoder (bypasses PickleValue AST for encode)
21+
- Python 3.10-3.14 support, wheels for Linux/macOS/Windows
2122

2223
### Performance (release build)
2324

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2425
"Programming Language :: Rust",
2526
"Framework :: ZODB",
2627
"Topic :: Database",

0 commit comments

Comments
 (0)