-
Notifications
You must be signed in to change notification settings - Fork 540
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
Update setulb call from Scipy for updated signature of 1.15 #6207
base: branch-25.02
Are you sure you want to change the base?
Conversation
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
@@ -175,12 +175,11 @@ def fprime_f(x): | |||
wa[ib], | |||
iwa[ib], | |||
task[ib], | |||
iprint, |
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.
Should we also remove this from the functions' signature if it has no more effect?
Looks reasonable. One thought I had: can we make it so that cuml works with both scipy < 1.15 and scipy >= 1.15? That would mean having some shim/compatibility built in at the point where we make use of the internal function. If we don't make it work with multiple versions, then we should bump the minimum version required in the dependencies. I have a slight preference for supporting several scipy versions instead of increasing the minimum version to 1.15 which is brand new. |
/ok to test |
Resolves the immediate update identified in #6206, we still should update things to not use internals of Scipy.