Skip to content

Commit

Permalink
Add packags for astropy and change installation command for scikit-learn
Browse files Browse the repository at this point in the history
  • Loading branch information
libowen2121 committed Apr 1, 2024
1 parent 163fecb commit 9b8dde6
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions harness/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
k: {
"python": "3.6",
"packages": "numpy scipy cython pytest pandas matplotlib",
"install": "pip install -v --no-use-pep517 --no-build-isolation -e .",
"install": "python setup.py develop",
}
for k in ["0.20", "0.21", "0.22"]
}
Expand All @@ -11,7 +11,7 @@
k: {
"python": "3.7",
"packages": "numpy scipy cython pytest pandas matplotlib",
"install": "pip install -v --no-use-pep517 --no-build-isolation -e .",
"install": "python setup.py develop",
}
for k in ["0.23", "0.24"]
}
Expand Down Expand Up @@ -215,7 +215,11 @@
].append("sed -i 's/Jinja2>=2.3/Jinja2<3.1/' setup.py")

MAP_VERSION_TO_INSTALL_ASTROPY = {
k: {"python": "3.9", "install": "python setup.py install"}
k: {
"python": "3.9",
"install": "python setup.py install",
"pip_packages": "pytest extension-helpers numpy",
}
for k in
["0.1", "0.2", "0.3", "0.4", "1.1", "1.2", "1.3", "3.0", "3.1", "3.2"] + \
["4.1", "4.2", "4.3", "5.0", "5.1", "5.2"]
Expand Down

0 comments on commit 9b8dde6

Please sign in to comment.