Skip to content

Commit

Permalink
feat: add support for Python 3.8 (#17)
Browse files Browse the repository at this point in the history
Closes #16
  • Loading branch information
tseaver committed Aug 4, 2020
1 parent c6da669 commit f727aba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -47,7 +47,7 @@ def default(session):
)


@nox.session(python=["2.7", "3.5", "3.6", "3.7"])
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
def unit(session):
"""Default unit test session."""
default(session)
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -71,7 +71,8 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Internet",
],
Expand All @@ -80,7 +81,7 @@
namespace_packages=namespaces,
install_requires=dependencies,
extras_require=extras,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
include_package_data=True,
zip_safe=False,
)

0 comments on commit f727aba

Please sign in to comment.