Skip to content

Commit 338a2b4

Browse files
committed
added 3.13 to noxfile
1 parent 7474d18 commit 338a2b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
DEFAULT_PYTHON_VERSION = "3.8"
3636

37-
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
37+
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3838
UNIT_TEST_STANDARD_DEPENDENCIES = [
3939
"mock",
4040
"asyncmock",
@@ -195,7 +195,7 @@ def install_unittest_dependencies(session, *constraints):
195195
def unit(session, protobuf_implementation):
196196
# Install all test dependencies, then install this package in-place.
197197

198-
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12"):
198+
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
199199
session.skip("cpp implementation is not supported in python 3.11+")
200200

201201
constraints_path = str(
@@ -451,7 +451,7 @@ def docfx(session):
451451
def prerelease_deps(session, protobuf_implementation):
452452
"""Run all tests with prerelease versions of dependencies installed."""
453453

454-
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12"):
454+
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
455455
session.skip("cpp implementation is not supported in python 3.11+")
456456

457457
# Install all dependencies

testing/constraints-3.13.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)