Skip to content

Commit e41f383

Browse files
authored
feat: add support for Python 3.10 (#233)
1 parent d26f2a6 commit e41f383

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

packages/google-cloud-datastore/owlbot.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@
5454
# ----------------------------------------------------------------------------
5555
# Add templated files
5656
# ----------------------------------------------------------------------------
57-
templated_files = common.py_library(microgenerator=True, split_system_tests=True,)
57+
templated_files = common.py_library(
58+
microgenerator=True,
59+
split_system_tests=True,
60+
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9", "3.10"],
61+
)
5862
s.move(
5963
templated_files,
6064
excludes=["docs/multiprocessing.rst", ".coveragerc", ".github/CODEOOWNERS"],

packages/google-cloud-datastore/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
"Programming Language :: Python :: 3.7",
9090
"Programming Language :: Python :: 3.8",
9191
"Programming Language :: Python :: 3.9",
92+
"Programming Language :: Python :: 3.10",
9293
"Operating System :: OS Independent",
9394
"Topic :: Internet",
9495
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)