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

Commit

Permalink
Merge pull request #388 from simphony/fix-numpy-dependency
Browse files Browse the repository at this point in the history
Fixed setup script and dependencies.
  • Loading branch information
stefanoborini committed Feb 10, 2017
2 parents b306a87 + 574947f commit e92a11a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
5 changes: 1 addition & 4 deletions dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
enum34 >= 1.0.4
tables >= 3.1.1
stevedore >= 1.2.0
git+https://github.com/simphony/simphony-metaparser.git@master#egg=simphony_metaparser
click >= 3.3
pyyaml >= 3.11
sphinx >= 1.3.1
tabulate >= 0.7.4
mock==1.0.1
coverage
flake8<3
numpy >= 1.4.1
hypothesis
# Pinned because older versions return status 2 for successful
# operation, which is considered an error by setup.py
Expand Down
6 changes: 5 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
numexpr
git+https://github.com/simphony/simphony-metaparser.git@master#egg=simphony_metaparser
enum34 >= 1.0.4
tables >= 3.1.1
stevedore >= 1.2.0
# Pinned. Apparently 1.12 has problems compiling on Adham's platform
numpy==1.11.1
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,14 +132,17 @@ def write_version_py(filename=None):
description='The native implementation of the SimPhoNy cuds objects',
long_description=README_TEXT,
install_requires=[
"enum34>=1.0.4",
"stevedore>=1.2.0",
"numpy>=1.11.1",
"simphony_metaparser>=0.1.0"
"enum34 >= 1.0.4",
"stevedore >= 1.2.0",
"numpy ~= 1.11",
],
extras_require={
'H5IO': ["tables>=3.1.1"],
'CUBAGen': ["click >= 3.3", "pyyaml >= 3.11"]},
'CUBAGen': [
"simphony_metaparser >= 0.1.0",
"click >= 3.3",
"pyyaml >= 3.11"
]},
packages=find_packages(),
cmdclass={
'build_meta': BuildMeta,
Expand Down

0 comments on commit e92a11a

Please sign in to comment.