Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 5e8c3d5

Browse files
committed
Update python versions in owlbot and noxfile
1 parent 79d6782 commit 5e8c3d5

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

owlbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# Add templated files
2828
# ----------------------------------------------------------------------------
2929
templated_files = common.py_library(
30-
unit_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
30+
unit_test_python_versions=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"],
3131
system_test_python_versions=["3.9", "3.14"],
3232
default_python_version="3.13",
3333
cov_level=98,

samples/snippets/noxfile.py

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
import glob
1818
import os
19-
from pathlib import Path
2019
import sys
20+
from pathlib import Path
2121
from typing import Callable, Dict, List, Optional
2222

2323
import nox
@@ -42,9 +42,11 @@
4242
"2.7",
4343
"3.6",
4444
"3.7",
45-
"3.9",
45+
"3.8",
4646
"3.10",
4747
"3.11",
48+
"3.12",
49+
"3.13",
4850
],
4951
# Old samples are opted out of enforcing Python type hints
5052
# All new samples should feature them
@@ -94,7 +96,18 @@ def get_pytest_env_vars() -> Dict[str, str]:
9496

9597
# DO NOT EDIT - automatically generated.
9698
# All versions used to tested samples.
97-
ALL_VERSIONS = ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
99+
ALL_VERSIONS = [
100+
"2.7",
101+
"3.6",
102+
"3.7",
103+
"3.8",
104+
"3.9",
105+
"3.10",
106+
"3.11",
107+
"3.12",
108+
"3.13",
109+
"3.14",
110+
]
98111

99112
# Any default versions that should be ignored.
100113
IGNORED_VERSIONS = TEST_CONFIG["ignored_versions"]

0 commit comments

Comments
 (0)