Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kcha committed May 23, 2019
1 parent f93df95 commit a2ff992
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion qapa/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.2.2'
__version__ = '1.2.3'
27 changes: 15 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
if sys.version_info[:2] < (2, 7):
sys.stderr.write("At least Python 2.7 or later is required\n")
sys.exit(1)
elif sys.version_info[:1] == (2,):
sys.stderr.write(
"Please consider upgrading to Python 3 as Python 2.7 End of Life is in 2020.")
elif sys.version_info[0] == 3 and sys.version_info[:2] < (3, 5):
sys.stderr.write("At least Python 3.5 or later is required.\n")
sys.exit(1)
Expand All @@ -29,20 +32,20 @@
'biopython >= 1.66',
'pybedtools >= 0.7.9'],
entry_points={
'console_scripts': [
'qapa = qapa.qapa:main'
]
'console_scripts': [
'qapa = qapa.qapa:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
zip_safe=False
)

0 comments on commit a2ff992

Please sign in to comment.