Skip to content

Commit 756fcfe

Browse files
1 parent 4f40653 commit 756fcfe

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

‎CONTRIBUTING.rst‎

Lines changed: 6 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.11 and 3.12 on both UNIX and Windows.
25+
3.7, 3.8, 3.9, 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.12 -- -k <name of test>
75+
$ nox -s unit-3.13 -- -k <name of test>
7676

7777

7878
.. note::
@@ -143,12 +143,12 @@ Running System Tests
143143
$ nox -s system
144144

145145
# Run a single system test
146-
$ nox -s system-3.12 -- -k <name of test>
146+
$ nox -s system-3.13 -- -k <name of test>
147147

148148

149149
.. note::
150150

151-
System tests are only configured to run under Python 3.8, 3.9, 3.11 and 3.12.
151+
System tests are only configured to run under Python 3.8, 3.11 and 3.13.
152152
For expediency, we do not run them in older versions of Python 3.
153153

154154
This alone will not run the tests. You'll need to change some local
@@ -226,12 +226,14 @@ We support:
226226
- `Python 3.9`_
227227
- `Python 3.11`_
228228
- `Python 3.12`_
229+
- `Python 3.13`_
229230

230231
.. _Python 3.7: https://docs.python.org/3.7/
231232
.. _Python 3.8: https://docs.python.org/3.8/
232233
.. _Python 3.9: https://docs.python.org/3.9/
233234
.. _Python 3.11: https://docs.python.org/3.11/
234235
.. _Python 3.12: https://docs.python.org/3.12/
236+
.. _Python 3.13: https://docs.python.org/3.13/
235237

236238

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

‎noxfile.py‎

Lines changed: 7 additions & 5 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.11", "3.12"]
37+
UNIT_TEST_PYTHON_VERSIONS: List[str] = ["3.7", "3.8", "3.9", "3.11", "3.12", "3.13"]
3838
UNIT_TEST_STANDARD_DEPENDENCIES = [
3939
"mock",
4040
"asyncmock",
@@ -64,13 +64,14 @@
6464
"bigframes",
6565
],
6666
"3.11": [],
67-
"3.12": [
67+
"3.12": [],
68+
"3.13": [
6869
"bqstorage",
6970
"bigframes",
7071
],
7172
}
7273

73-
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.9", "3.11", "3.12"]
74+
SYSTEM_TEST_PYTHON_VERSIONS: List[str] = ["3.8", "3.11", "3.13"]
7475
SYSTEM_TEST_STANDARD_DEPENDENCIES: List[str] = [
7576
"mock",
7677
"pytest",
@@ -96,7 +97,8 @@
9697
"bigframes",
9798
],
9899
"3.11": [],
99-
"3.12": [
100+
"3.12": [],
101+
"3.13": [
100102
"bqstorage",
101103
"bigframes",
102104
],
@@ -409,7 +411,7 @@ def docfx(session):
409411
)
410412

411413

412-
@nox.session(python="3.12")
414+
@nox.session(python="3.13")
413415
@nox.parametrize(
414416
"protobuf_implementation",
415417
["python", "upb", "cpp"],

0 commit comments

Comments
 (0)