Skip to content

Commit bdf128e

Browse files
authored
feat: Add support for Python 3.14 (#202)
Towards b/375664027
1 parent 4bb992e commit bdf128e

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
14+
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"3.11",
4343
"3.12",
4444
"3.13",
45+
"3.14",
4546
]
4647
UNIT_TEST_STANDARD_DEPENDENCIES = [
4748
"mock",
@@ -79,6 +80,7 @@
7980
"unit-3.11",
8081
"unit-3.12",
8182
"unit-3.13",
83+
"unit-3.14",
8284
"system",
8385
"cover",
8486
"lint",
@@ -366,7 +368,7 @@ def docfx(session):
366368
)
367369

368370

369-
@nox.session(python="3.13")
371+
@nox.session(python="3.14")
370372
def prerelease_deps(session):
371373
"""Run all tests with prerelease versions of dependencies installed."""
372374

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"Programming Language :: Python :: 3.11",
5050
"Programming Language :: Python :: 3.12",
5151
"Programming Language :: Python :: 3.13",
52+
"Programming Language :: Python :: 3.14",
5253
"Development Status :: 3 - Alpha",
5354
"Intended Audience :: Developers",
5455
"License :: OSI Approved :: Apache Software License",

testing/constraints-3.14.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)