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

Commit 2fa2cc9

Browse files
1 parent 603391e commit 2fa2cc9

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.kokoro/presubmit/presubmit.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,3 @@ env_vars: {
55
key: "RUN_SYSTEM_TESTS"
66
value: "false"
77
}
8-
9-
env_vars: {
10-
key: "NOX_SESSION"
11-
value: "blacken doctests format"
12-
}

.kokoro/presubmit/system-3.8.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Only run this nox session.
4+
env_vars: {
5+
key: "NOX_SESSION"
6+
value: "system-3.8"
7+
}

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ISORT_VERSION = "isort==5.11.0"
3333
LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.12"
35+
DEFAULT_PYTHON_VERSION = "3.8"
3636

3737
UNIT_TEST_PYTHON_VERSIONS: List[str] = [
3838
"3.8",
@@ -58,7 +58,7 @@
5858
UNIT_TEST_EXTRAS: List[str] = []
5959
UNIT_TEST_EXTRAS_BY_PYTHON: Dict[str, List[str]] = {}
6060

61-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.12"]
61+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8"]
6262
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
6363
"mock",
6464
"pytest",

0 commit comments

Comments
 (0)