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
We need to upgrade ross to work with numpy 2.0. This means that we will have to change our test matrix so that we will only support python >= 3.9.
The text was updated successfully, but these errors were encountered:
It appears that in NumPy 2.0.0, the representation repr of NumPy scalars changed, causing conflicts when running pytest.
repr
See: NumPy 2.0.0 Release Notes
Create a conftest.py file with a pytest hook to modify options for doctests:
def pytest_configure(config): np.set_printoptions(legacy='1.25')
This will ensure compatibility with the previous NumPy behavior.
Update all doctests to align with the new NumPy behavior.
Sorry, something went wrong.
Hi there! I have marked this issue as stale because it has not had activity for 45 days. Consider the following options:
wontfix
wontfix for now
No branches or pull requests
We need to upgrade ross to work with numpy 2.0.
This means that we will have to change our test matrix so that we will only support python >= 3.9.
The text was updated successfully, but these errors were encountered: