We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently we run tests with alltrue from numpy. However, this is depreceated as of 1.25 and should be removed.
alltrue
Run the github actions with numpy >= 1.25
The tests must not fail anymore
The suggested solution is to use all instead of alltrue.
all
The text was updated successfully, but these errors were encountered:
numpy.alltrue
numpy.all
fixed with #76
Sorry, something went wrong.
No branches or pull requests
Informations
What is the current behavior?
Currently we run tests with
alltrue
from numpy. However, this is depreceated as of 1.25 and should be removed.Steps to reproduce the problem
Run the github actions with numpy >= 1.25
What is the expected behavior?
The tests must not fail anymore
Suggested solutions
The suggested solution is to use
all
instead ofalltrue
.The text was updated successfully, but these errors were encountered: