8000 feat: add support for Python 3.10 (#233) · googleapis/python-datastore@f524c40 · GitHub
[go: up one dir, main page]

Skip to content

Commit f524c40

Browse files
authored
feat: add support for Python 3.10 (#233)
1 parent 25ce1ff commit f524c40

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

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
# ---------------- B222 ------------------------------------------------------------
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"],

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)
0