Spaces:
Running
Running
Commit
·
e0bbedc
1
Parent(s):
81471d4
Fix version to julia 0.6.0
Browse files- requirements.txt +1 -1
- setup.py +2 -7
requirements.txt
CHANGED
|
@@ -2,4 +2,4 @@ sympy
|
|
| 2 |
pandas
|
| 3 |
numpy
|
| 4 |
scikit_learn >= 1.0.0
|
| 5 |
-
julia
|
|
|
|
| 2 |
pandas
|
| 3 |
numpy
|
| 4 |
scikit_learn >= 1.0.0
|
| 5 |
+
julia == 0.6.0
|
setup.py
CHANGED
|
@@ -17,13 +17,8 @@ setuptools.setup(
|
|
| 17 |
long_description=long_description,
|
| 18 |
long_description_content_type="text/markdown",
|
| 19 |
url="https://github.com/MilesCranmer/pysr",
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
"numpy",
|
| 23 |
-
"pandas",
|
| 24 |
-
"sympy",
|
| 25 |
-
"scikit-learn >= 1.0.0",
|
| 26 |
-
],
|
| 27 |
packages=setuptools.find_packages(),
|
| 28 |
package_data={"pysr": ["../Project.toml", "../datasets/*"]},
|
| 29 |
include_package_data=False,
|
|
|
|
| 17 |
long_description=long_description,
|
| 18 |
long_description_content_type="text/markdown",
|
| 19 |
url="https://github.com/MilesCranmer/pysr",
|
| 20 |
+
# Read from requirements.txt:
|
| 21 |
+
install_requires=open("requirements.txt").read().splitlines(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
packages=setuptools.find_packages(),
|
| 23 |
package_data={"pysr": ["../Project.toml", "../datasets/*"]},
|
| 24 |
include_package_data=False,
|