Skip to content

Commit

Permalink
Merge pull request #28 from airbnb/mw_update_version_info
Browse files Browse the repository at this point in the history
Update version to 0.6, and fix classifiers.
  • Loading branch information
matthewwardrop authored Sep 27, 2016
2 parents 65a7d1d + 84bf560 commit 9c60931
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion knowledge_repo/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = "Nikki Ray (maintainer), Robert Chang, Dan Frank, Chetan Sharma, Matthew Wardrop"
__author_email__ = "[email protected], [email protected], [email protected], [email protected], [email protected]"
__version__ = "0.5"
__version__ = "0.6"
try:
__version__ += '_' + subprocess.check_output(['git', 'rev-parse', 'HEAD'], shell=False).decode('utf-8').replace('\n', '')
except:
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,17 @@ def run(self):
install_requires=version_info['__dependencies__'],
extras_require=version_info['__optional_dependencies__'],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
cmdclass={'install_scripts': install_scripts_windows_wrapper}
)

0 comments on commit 9c60931

Please sign in to comment.