3333import subprocess
3434
3535## CONFIG
36- target_version = '3.0.3 '
36+ target_version = '3.1.0 '
3737
3838
3939def version_info (target_version ):
4040 is_dev_version = 'PYPI' in os .environ and os .environ ['PYPI' ] == 'pypitest'
4141 if is_dev_version :
4242 p = subprocess .Popen ('git describe --tag' .split (), stdout = subprocess .PIPE )
43- git_describe = p .communicate ()[0 ].strip ()
43+ git_describe = str ( p .communicate ()[0 ]) .strip ()
4444 release , build , commitish = git_describe .split ('-' )
45- version = "{0}.post {1}" .format (release , build )
45+ version = "{0}a {1}" .format (target_version , build )
4646 else : # This is a RELEASE version
4747 version = target_version
4848 return {
@@ -86,7 +86,7 @@ def run_tests(self):
8686 long_description = long_description ,
8787 long_description_content_type = 'text/markdown' ,
8888 classifiers = [ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
89- 'Development Status :: 4 - Beta ' ,
89+ 'Development Status :: 5 - Production/Stable ' ,
9090 'Programming Language :: Python :: Implementation :: PyPy' ,
9191 'Intended Audience :: Developers' ,
9292 'Intended Audience :: Information Technology' ,
@@ -95,10 +95,10 @@ def run_tests(self):
9595 'Programming Language :: Python :: 2' ,
9696 'Programming Language :: Python :: 2.7' ,
9797 'Programming Language :: Python :: 3' ,
98- 'Programming Language :: Python :: 3.4' ,
9998 'Programming Language :: Python :: 3.5' ,
10099 'Programming Language :: Python :: 3.6' ,
101100 'Programming Language :: Python :: 3.7' ,
101+ 'Programming Language :: Python :: 3.8' ,
102102 'License :: OSI Approved :: Apache Software License' ,
103103 'Topic :: Scientific/Engineering :: Artificial Intelligence' ,
104104 'Topic :: Scientific/Engineering :: Bio-Informatics' ,
0 commit comments