Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Fix numpy version in requirements #220

Merged
merged 3 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy >= 1.10.2p
numpy >= 1.10.2
pandas >= 0.17.1
networkx >= 1.9.1
flask >= 0.10.1
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cython >= 0.23.5
numpy >= 1.10.2p
numpy >= 1.10.2
dataset == 0.8
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if not readthedocs:
if not platform.python_implementation() == "PyPy":
install_requires += ['numpy >= 1.10.2p']
install_requires += ['numpy >= 1.10.2']
if ('APPVEYOR' not in os.environ) or ('TRAVIS' not in os.environ):
install_requires += ['pandas >= 0.17.1',
'bokeh == 0.12.16',
Expand Down
Loading