Skip to content

Commit aff2196

Browse files
Add support for Python 3.14 (#379)
Closes #379.
1 parent 97672b1 commit aff2196

File tree

3 files changed

+103
-6
lines changed

3 files changed

+103
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.10", "3.11", "3.12", "3.13"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2121
resolution: ["highest", "lowest-direct"]
2222
env:
2323
# Shared env variables for all the tests

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,17 @@ classifiers = [
1616
"Programming Language :: Python :: 3.11",
1717
"Programming Language :: Python :: 3.12",
1818
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
1920
"Operating System :: OS Independent",
2021
"Typing :: Typed",
2122
]
2223
dynamic = ["version"]
2324
dependencies = [
2425
"protobuf>=5",
2526
"cel-python==0.2.*",
27+
# We need at least this version, which started publishing wheels for Python 3.14.
28+
# Ref: https://github.com/google/re2/issues/580
29+
"google-re2>=1.1.20251105; python_version == '3.14'",
2630
# We need at least this version, which started publishing wheels for Python 3.13.
2731
# Ref: https://github.com/google/re2/issues/516
2832
"google-re2>=1.1.20250722; python_version == '3.13'",

0 commit comments

Comments
 (0)