Skip to content

Commit 44ce861

Browse files
committed
chore(python): Add support for Python 3.14
1 parent d37fb80 commit 44ce861

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

owlbot.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ def get_staging_dirs(
272272
cov_level=98,
273273
split_system_tests=True,
274274
system_test_extras=["tracing"],
275-
system_test_python_versions=["3.12"]
275+
system_test_python_versions=["3.12"],
276+
unit_test_python_versions=["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
276277
)
277278
s.move(
278279
templated_files,
@@ -302,6 +303,12 @@ def get_staging_dirs(
302303
# Update samples folder in CONTRIBUTING.rst
303304
s.replace("CONTRIBUTING.rst", "samples/snippets", "samples/samples")
304305

306+
s.replace(
307+
"noxfile.py",
308+
'''session.python in \("3.11", "3.12", "3.13"\)''',
309+
'''session.python in ("3.11", "3.12", "3.13", "3.14")'''
310+
)
311+
305312
# ----------------------------------------------------------------------------
306313
# Samples templates
307314
# ----------------------------------------------------------------------------

0 commit comments

Comments
 (0)