Skip to content

Commit

Permalink
update requirements to not include an absolute version
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerwmarrs committed May 4, 2020
1 parent b71472e commit 37173af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions python2-requirements.txt
Expand Up @@ -3,8 +3,8 @@ matplotlib
pytest>=3.5.1
setuptools>=39.1.0
cython>=0.x
protobuf==3.11.2
scipy==1.2.3
protobuf>=3.11.2,<4.0.0
scipy<2.0.0
sphinx
nbsphinx
sphinx_rtd_theme
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Expand Up @@ -3,8 +3,8 @@ matplotlib>=3.0.3
pytest>=3.5.1
setuptools>=39.1.0
cython>=0.x
protobuf==3.11.2
scipy==1.3.2
protobuf>=3.11.2,<4.0.0
scipy>=1.3.2,<2.0.0
sphinx
nbsphinx
sphinx_rtd_theme
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -31,13 +31,13 @@
))

matplot = 'matplotlib>=3.0.3'
scipy = 'scipy==1.3.2'
scipy = 'scipy>=1.3.2,<2.0.0'
if sys.version_info.major == 3:
with open('README.rst', 'r', encoding='utf-8') as fh:
long_description = fh.read()
elif sys.version_info.major == 2:
matplot = 'matplotlib'
scipy = 'scipy==1.2.3'
scipy = 'scipy<2.0.0'
with open('README.rst', 'r') as fh:
long_description = fh.read()

Expand Down

0 comments on commit 37173af

Please sign in to comment.