Skip to content

Commit

Permalink
#49: use ranges for dependent package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodv authored Jul 23, 2017
1 parent a30da80 commit 2dbd0aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
description=DESCRIPTION,
long_description=open('README.rst', 'r').read(),
install_requires=[
'numpy==1.12.1',
'scikit-learn==0.18.1',
'scipy==0.19.0',
'numpy>=1.13.0, <0.14.0',
'scikit-learn>=0.18.0, <0.19.0',
'scipy>=0.19.0, <0.20.0',
],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 2dbd0aa

Please sign in to comment.