Skip to content

Commit

Permalink
feat: add support for Python 3.10 (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 8, 2021
1 parent 25ce1ff commit f524c40
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion owlbot.py
Expand Up @@ -54,7 +54,11 @@
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(microgenerator=True, split_system_tests=True,)
templated_files = common.py_library(
microgenerator=True,
split_system_tests=True,
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9", "3.10"],
)
s.move(
templated_files,
excludes=["docs/multiprocessing.rst", ".coveragerc", ".github/CODEOOWNERS"],
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -89,6 +89,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit f524c40

Please sign in to comment.