Release v7.6.0a1

This commit is contained in:
Seth Michael Larson
2020-03-13 14:54:37 -05:00
parent 883287551a
commit e7bcc800ea
3 changed files with 22 additions and 3 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ from os.path import join, dirname
from setuptools import setup, find_packages
import sys
VERSION = (7, 5, 1)
VERSION = (7, 6, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
__versionstr__ = "7.6.0a1"
with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip()