PEP440 version numbers...

This commit is contained in:
Bernie Hackett 2015-05-19 10:38:24 -07:00
parent baa6cf0fd8
commit ff3c18ffbc
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (3, 0, 2, "+")
version_tuple = (3, 0, 3, '.dev0')
def get_version_string():
if isinstance(version_tuple[-1], str):

View File

@ -26,7 +26,7 @@ from distutils.errors import CCompilerError, DistutilsOptionError
from distutils.errors import DistutilsPlatformError, DistutilsExecError
from distutils.core import Extension
version = "3.0.2+"
version = "3.0.3.dev0"
f = open("README.rst")
try: