Skip to content

Commit

Permalink
Add Python 3.8 to supported runtimes in setup.py
Browse files Browse the repository at this point in the history
Also Python 3.6 as it was missing
  • Loading branch information
matthewfeickert committed Dec 1, 2019
1 parent a0fee07 commit 8af513f
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,20 @@
tests_require=["pytest>=3.9"],
extras_require=extras_require,
classifiers=[
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
"Topic :: Utilities",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Utilities",
],
data_files=[],
python_requires='>=3.6',
platforms="Any",
)
)

0 comments on commit 8af513f

Please sign in to comment.