-
Notifications
You must be signed in to change notification settings - Fork 118
Add support for NumPy 2.4.0 #498
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
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #498 +/- ##
=======================================
Coverage 90.13% 90.13%
=======================================
Files 29 29
Lines 1824 1824
=======================================
Hits 1644 1644
Misses 180 180
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
amontanez24
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tests seem to be failing
amontanez24
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we do this in SDV to handle the indirect dependencies
https://github.com/sdv-dev/SDV/blob/ad8e4e09bdd01338ea94a60cddd1f06c815273aa/tasks.py#L16
.github/workflows/minimum.yml
Outdated
| run: | | ||
| python -m pip install --upgrade pip | ||
| python -m pip install invoke .[test] | ||
| python -m pip install "scikit-learn<1.8.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this not a requirement?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scikit-learn is an optional dependency for the tutorials. 1.8.0 recently released and no longer supports older versions of scipy and numpy which is why the minimum tests were originally failing.
Resolve #497