Merge pull request #13186 from edx/ned/pin-scipy-etc

Pin versions of numpy and scipy
This commit is contained in:
Ned Batchelder
2016-08-09 22:09:28 -04:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ setup(
packages=["calc"],
install_requires=[
"pyparsing==2.0.1",
"numpy",
"scipy"
"numpy==1.6.2",
"scipy==0.14.0",
],
)

View File

@@ -6,8 +6,8 @@ setup(
packages=["chem"],
install_requires=[
"pyparsing==2.0.1",
"numpy",
"scipy",
"nltk<3.0",
"numpy==1.6.2",
"scipy==0.14.0",
"nltk==2.0.6",
],
)

View File

@@ -5,6 +5,6 @@ setup(
version="0.1",
packages=["symmath"],
install_requires=[
"sympy",
"sympy==0.7.1",
],
)