Skip to content

Commit f727aba

Browse files
authored
feat: add support for Python 3.8 (#17)
Closes #16
1 parent c6da669 commit f727aba

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def default(session):
4747
)
4848

4949

50-
@nox.session(python=["2.7", "3.5", "3.6", "3.7"])
50+
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
5151
def unit(session):
5252
"""Default unit test session."""
5353
default(session)

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"Programming Language :: Python :: 3",
7272
"Programming Language :: Python :: 3.5",
7373
"Programming Language :: Python :: 3.6",
74-
'Programming Language :: Python :: 3.7',
74+
"Programming Language :: Python :: 3.7",
75+
"Programming Language :: Python :: 3.8",
7576
"Operating System :: OS Independent",
7677
"Topic :: Internet",
7778
],
@@ -80,7 +81,7 @@
8081
namespace_packages=namespaces,
8182
install_requires=dependencies,
8283
extras_require=extras,
83-
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
84+
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
8485
include_package_data=True,
8586
zip_safe=False,
8687
)

0 commit comments

Comments
 (0)