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

Commit face4f7

Browse files
1 parent 119d155 commit face4f7

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

.kokoro/samples/python3.14/common.cfg

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,23 @@ env_vars: {
5858

5959
###################################################
6060

61+
62+
63+
#############################################
64+
# this section merged from .kokoro/common_env_vars.cfg using owlbot.py
65+
66+
env_vars: {
67+
key: "PRODUCT_AREA_LABEL"
68+
value: "observability"
69+
}
70+
env_vars: {
71+
key: "PRODUCT_LABEL"
72+
value: "logging"
73+
}
74+
env_vars: {
75+
key: "LANGUAGE_LABEL"
76+
value: "python"
77+
}
78+
79+
###################################################
80+

CONTRIBUTING.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In order to add a feature:
2222
documentation.
2323

2424
- The feature must work fully on the following CPython versions:
25-
3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14 on both UNIX and Windows.
25+
3.7, 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13 on both UNIX and Windows.
2626

2727
- The feature must not add unnecessary dependencies (where
2828
"unnecessary" is of course subjective, but new dependencies should
@@ -72,7 +72,7 @@ We use `nox <https://nox.readthedocs.io/en/latest/>`__ to instrument our tests.
7272

7373
- To run a single unit test::
7474

75-
$ nox -s unit-3.14 -- -k <name of test>
75+
$ nox -s unit-3.13 -- -k <name of test>
7676

7777

7878
.. note::
@@ -228,7 +228,6 @@ We support:
228228
- `Python 3.11`_
229229
- `Python 3.12`_
230230
- `Python 3.13`_
231-
- `Python 3.14`_
232231

233232
.. _Python 3.7: https://docs.python.org/3.7/
234233
.. _Python 3.8: https://docs.python.org/3.8/
@@ -237,7 +236,6 @@ We support:
237236
.. _Python 3.11: https://docs.python.org/3.11/
238237
.. _Python 3.12: https://docs.python.org/3.12/
239238
.. _Python 3.13: https://docs.python.org/3.13/
240-
.. _Python 3.14: https://docs.python.org/3.14/
241239

242240

243241
Supported versions can be found in our ``noxfile.py`` `config`_.

noxfile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"3.11",
4343
"3.12",
4444
"3.13",
45-
"3.14"
4645
]
4746
UNIT_TEST_STANDARD_DEPENDENCIES = [
4847
"mock",
@@ -186,7 +185,7 @@ def install_unittest_dependencies(session, *constraints):
186185
def unit(session, protobuf_implementation):
187186
# Install all test dependencies, then install this package in-place.
188187

189-
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13", "3.14"):
188+
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
190189
session.skip("cpp implementation is not supported in python 3.11+")
191190

192191
constraints_path = str(
@@ -386,7 +385,7 @@ def docfx(session):
386385
)
387386

388387

389-
@nox.session(python="3.14")
388+
@nox.session(python="3.13")
390389
@nox.parametrize(
391390
"protobuf_implementation",
392391
["python", "upb", "cpp"],

samples/snippets/noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
8989

9090
# DO NOT EDIT - automatically generated.
9191
# All versions used to test samples.
92-
ALL_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
92+
ALL_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
9393

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

0 commit comments

Comments
 (0)