Skip to content

Commit

Permalink
Merge pull request #122 from pescadores/min-version-dependencies
Browse files Browse the repository at this point in the history
fixes #121 for minimum version requirements
  • Loading branch information
bmcfee authored Jan 24, 2018
2 parents 15ed7c2 + 6107343 commit 8c5f998
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,14 @@
license='ISC',
install_requires=[
'joblib>=0.9',
'six',
'pyzmq',
'numpy',
'decorator'
'six>=1.8',
'pyzmq>=15.0',
'numpy>=1.9',
'decorator>=4.0'
],
extras_require={
'docs': ['numpydoc', 'sphinx-gallery'],
'tests': ['pytest-timeout']
'docs': ['numpydoc>=0.6',
'sphinx-gallery>=0.1.10'],
'tests': ['pytest-timeout>=1.2']
}
)

0 comments on commit 8c5f998

Please sign in to comment.