Skip to content

Commit

Permalink
feat: add support for Python 3.10 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 8, 2021
1 parent 615be11 commit a8ca09f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion owlbot.py
Expand Up @@ -25,7 +25,10 @@
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(microgenerator=True)
templated_files = common.py_library(
microgenerator=True,
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9", "3.10"],
)

# this is an http library, not grpc
s.move(templated_files, excludes=["docs/multiprocessing.rst"])
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -76,6 +76,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",
],
Expand Down

0 comments on commit a8ca09f

Please sign in to comment.