Skip to content

Commit

Permalink
fix: exclude support for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Nov 8, 2021
1 parent 69031e9 commit 8ffa36c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion owlbot.py
Expand Up @@ -81,7 +81,11 @@
# Add templated files
# ----------------------------------------------------------------------------

templated_files = common.py_library(cov_level=99, microgenerator=True)
templated_files = common.py_library(
cov_level=99,
system_test_python_versions=["3.8"],
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9"],
microgenerator=True)
python.py_samples(skip_readmes=True)
s.move(
templated_files,
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -93,7 +93,6 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down

0 comments on commit 8ffa36c

Please sign in to comment.