-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64cee30
commit 25c8807
Showing
3 changed files
with
11 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,9 @@ | ||
numpy==1.21.2; python_version < '3.10' | ||
numpy==1.21.6; python_version == '3.10' and platform_system != 'Windows' | ||
numpy==1.22.3; python_version == '3.10' and platform_system == 'Windows' | ||
numpy==1.23.2; python_version == '3.11' | ||
numpy==1.26.0; python_version == '3.12' | ||
scipy==1.3.2; python_version <= '3.8' and platform_machine != 'aarch64' | ||
scipy==1.5.3; python_version <= '3.8' and platform_machine == 'aarch64' | ||
scipy==1.5.4; python_version == '3.9' | ||
scipy==1.7.2; python_version == '3.10' | ||
scipy==1.9.3; python_version == '3.11' | ||
scipy==1.11.2; python_version == '3.12' | ||
statsmodels==0.13.2; python_version <= '3.10' | ||
statsmodels==0.13.3; python_version == '3.11' | ||
statsmodels==0.14.0; python_version == '3.12' | ||
cython>=0.29,!=0.29.18,!=0.29.31 | ||
scikit-learn>=0.22 | ||
pandas>=0.19 | ||
# Other requirements needed in CI / deploying only | ||
patsy | ||
pytest | ||
pytest-mpl | ||
pytest-benchmark | ||
setuptools>=38.6.0,!=50.0.0 | ||
packaging>=17.1 # Bundled with setuptools, but want to be explicit | ||
wheel | ||
twine>=1.13.0 | ||
readme_renderer | ||
matplotlib | ||
urllib3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
joblib>=0.11 | ||
Cython>=0.29,!=0.29.18,!=0.29.31 | ||
numpy>=1.21.2,<2.0.0 | ||
pandas>=0.19 | ||
scikit-learn>=0.22 | ||
scipy>=1.3.2 | ||
statsmodels>=0.13.2 | ||
urllib3 | ||
joblib>=1.2.0 | ||
Cython>=3.0.6 | ||
numpy>=2.0.0,<3 | ||
pandas>=1.4,!=2.1.0 | ||
scikit-learn>=1.5.2 | ||
scipy>=1.10.0 | ||
statsmodels>=0.14.4 | ||
urllib3>=2.2.0 | ||
setuptools>=38.6.0,!=50.0.0 | ||
packaging>=17.1 # Bundled with setuptools, but want to be explicit |