This repository was archived by the owner on Jul 6, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Original file line number Diff line number Diff line change 1
1
docker :
2
2
image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
3
- digest : sha256:6e7328583be8edd3ba8f35311c76a1ecbc823010279ccb6ab46b7a76e25eafcc
3
+ digest : sha256:4370ced27a324687ede5da07132dcdc5381993502a5e8a3e31e16dc631d026f0
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ In order to add a feature:
22
22
documentation.
23
23
24
24
- The feature must work fully on the following CPython versions:
25
- 3.6, 3.7, 3.8 and 3.9 on both UNIX and Windows.
25
+ 3.6, 3.7, 3.8, 3.9 and 3.10 on both UNIX and Windows.
26
26
27
27
- The feature must not add unnecessary dependencies (where
28
28
"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.
72
72
73
73
- To run a single unit test::
74
74
75
- $ nox -s unit-3.9 -- -k <name of test>
75
+ $ nox -s unit-3.10 -- -k <name of test>
76
76
77
77
78
78
.. note::
@@ -225,11 +225,13 @@ We support:
225
225
- `Python 3.7 `_
226
226
- `Python 3.8 `_
227
227
- `Python 3.9 `_
228
+ - `Python 3.10 `_
228
229
229
230
.. _Python 3.6 : https://docs.python.org/3.6/
230
231
.. _Python 3.7 : https://docs.python.org/3.7/
231
232
.. _Python 3.8 : https://docs.python.org/3.8/
232
233
.. _Python 3.9 : https://docs.python.org/3.9/
234
+ .. _Python 3.10 : https://docs.python.org/3.10/
233
235
234
236
235
237
Supported versions can be found in our ``noxfile.py `` `config `_.
Original file line number Diff line number Diff line change 29
29
30
30
DEFAULT_PYTHON_VERSION = "3.8"
31
31
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8" ]
32
- UNIT_TEST_PYTHON_VERSIONS = ["3.6" , "3.7" , "3.8" , "3.9" ]
32
+ UNIT_TEST_PYTHON_VERSIONS = ["3.6" , "3.7" , "3.8" , "3.9" , "3.10" ]
33
33
34
34
CURRENT_DIRECTORY = pathlib .Path (__file__ ).parent .absolute ()
35
35
You can’t perform that action at this time.
0 commit comments