-
Notifications
You must be signed in to change notification settings - Fork 2
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
Most recent numpy version failing tests #62
Comments
|
The risk aversion gwr damage function tests still fail for numpy 1.24.1 -- may have to do with numpy/numpy#22956 |
|
Yeah, I could get it to Normally, it can be helpful to check for deprecation warnings in local tests or CI run logs in the section after CI shows test results, but before test coverage gets uploaded. This usually calls out behavior that will break in future releases. We have warnings but it's unclear to me if they are directly related. Also, looking at numpy's changelog it's kinda weird that tests fail on v1.24.1 and not v1.24.0. Numpy v1.24.0 should have all the breaking behavior changes. |
A reminder that #11 might be tangled into this? |
Wat. All the tests are now passing with numpy v1.25.2 in PR #119. Can we merge the PR and close this? |
So strange... I can't think of any reasons not to merge though! |
Cool. Thanks for the input. Merging away. |
Closed with PR #119 |
In the most recent version of numpy, we need to replace
**
withnp.float_power
prints
False
while
returns
True
(the desired result)The text was updated successfully, but these errors were encountered: