Skip to content

Commit f81a2d0

Browse files
tseaverparthea
andauthored
feat: add support for Python 3.10 (#615)
Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent ea04930 commit f81a2d0

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CONTRIBUTING.rst

Lines changed: 3 additions & 3 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: 2.7,
25-
3.5, 3.6, 3.7 and 3.8 on both UNIX and Windows.
25+
3.5, 3.6, 3.7, 3.8, 3.9 and 3.10 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
@@ -111,7 +111,7 @@ Coding Style
111111
should point to the official ``googleapis`` checkout and the
112112
the branch should be the main branch on that remote (``main``).
113113

114-
- This repository contains configuration for the
114+
- This repository contains configuration for the
115115
`pre-commit <https://pre-commit.com/>`__ tool, which automates checking
116116
our linters during a commit. If you have it installed on your ``$PATH``,
117117
you can enable enforcing those checks via:
@@ -156,7 +156,7 @@ Running System Tests
156156
`docs <https://cloud.google.com/storage/docs/authentication#generating-a-private-key>`__
157157
for more details.
158158

159-
- Once you have downloaded your json keys, set the environment variable
159+
- Once you have downloaded your json keys, set the environment variable
160160
``GOOGLE_APPLICATION_CREDENTIALS`` to the absolute path of the json file::
161161

162162
$ export GOOGLE_APPLICATION_CREDENTIALS="/Users/<your_username>/path/to/app_credentials.json"

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
DEFAULT_PYTHON_VERSION = "3.8"
3131
SYSTEM_TEST_PYTHON_VERSIONS = ["2.7", "3.8"]
32-
UNIT_TEST_PYTHON_VERSIONS = ["2.7", "3.6", "3.7", "3.8", "3.9"]
32+
UNIT_TEST_PYTHON_VERSIONS = ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10"]
3333
CONFORMANCE_TEST_PYTHON_VERSIONS = ["3.8"]
3434

3535
_DEFAULT_STORAGE_HOST = "https://storage.googleapis.com"

owlbot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
templated_files = common.py_library(
2727
cov_level=100,
2828
split_system_tests=True,
29+
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9", "3.10"],
2930
system_test_external_dependencies=[
3031
"google-cloud-iam",
3132
"google-cloud-pubsub < 2.0.0",

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
"Programming Language :: Python :: 3.7",
9292
"Programming Language :: Python :: 3.8",
9393
"Programming Language :: Python :: 3.9",
94+
"Programming Language :: Python :: 3.10",
9495
"Operating System :: OS Independent",
9596
"Topic :: Internet",
9697
],

0 commit comments

Comments
 (0)