Update version number and add Python 3.8 to list of ok Pythons.

This commit is contained in:
Paul Vincent Craven
2019-12-15 10:39:00 -06:00
parent c76696f1c3
commit d43d52e55e

View File

@@ -4,7 +4,7 @@ from os import path
from setuptools import setup # type: ignore from setuptools import setup # type: ignore
BUILD = 0 BUILD = 0
VERSION = "0.9.0" VERSION = "0.9.1"
RELEASE = VERSION RELEASE = VERSION
if __name__ == "__main__": if __name__ == "__main__":
@@ -32,6 +32,7 @@ if __name__ == "__main__":
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
], ],