Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin scipy version #4380

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ outputs:
- numpy >=1.22.0
- pandas >=1.5.0, <2.1.0
- dask >=2022.2.0, !=2022.10.1
- scipy >=1.5.0
- scipy >=1.5.0, <1.12.0
- scikit-learn >=1.3.0
- scikit-optimize >=0.9.0
- statsmodels >=0.12.2
Expand Down
2 changes: 1 addition & 1 deletion core-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy>=1.21.0
pandas>=1.5.0, <2.1.0
scipy>=1.5.0
scipy>=1.5.0, <1.12.0
scikit-learn>=1.3.0
scikit-optimize>=0.9.0
pyzmq>=20.0.0
Expand Down
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release Notes
* Fixes
* Fixed bug in `_downcast_nullable_y` causing woodwork initialization issues :pr:`4369`
* Changes
* Pinned scipy version to under 1.12.0 :pr:`4380`
* Documentation Changes
* Testing Changes

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requires-python = ">=3.8,<4"
dependencies = [
"numpy >= 1.22.0",
"pandas >= 1.5.0, < 2.1.0",
"scipy >= 1.5.0",
"scipy >= 1.5.0, < 1.12.0",
"scikit-learn >= 1.3.0",
"scikit-optimize >= 0.9.0",
"pyzmq >= 20.0.0",
Expand Down
Loading