Skip to content

Commit

Permalink
feat: add Python 3.9 support
Browse files Browse the repository at this point in the history
Closes #654.
  • Loading branch information
tseaver committed Dec 10, 2020
1 parent 2d3b8d1 commit 7448085
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -75,7 +75,7 @@ def blacken(session):
session.run("black", *BLACK_PATHS)


@nox.session(python=["3.6", "3.7", "3.8"])
@nox.session(python=["3.6", "3.7", "3.8", "3.9"])
def unit(session):
session.install(*TEST_DEPENDENCIES)
session.install(*(ASYNC_DEPENDENCIES))
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -59,6 +59,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down

0 comments on commit 7448085

Please sign in to comment.