Skip to content

Commit

Permalink
Adds minimum versions of numpy and scipy to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Jan 25, 2018
1 parent 75790d2 commit 51f92c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy==1.13.3
scipy==1.0.0
numpy>=1.13.3
scipy>=1.0.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = [
'numpy',
'scipy',
'numpy>=1.13.0',
'scipy>=1.0.0',
],
)

0 comments on commit 51f92c1

Please sign in to comment.