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
A new printing behaviour has been enabled in Numpy 2.0 which leads to errors in the edit widget.
[np.int64(42), np.int64(23), np.int64(12)]
used to be
[42, 23, 12]
As these strings are interpreted using eval (which should probably also avoided), the creation of objects fails (There is no numpy in the namespace).
Also there is some trouble with Sympy, which cannot handle the printing behaviour which includes the complete types.
The text was updated successfully, but these errors were encountered:
Can you link to the code where this happens? @marscher
Sorry, something went wrong.
fixed by #139
No branches or pull requests
A new printing behaviour has been enabled in Numpy 2.0 which leads to errors in the edit widget.
used to be
As these strings are interpreted using eval (which should probably also avoided), the creation of objects fails (There is no numpy in the namespace).
Also there is some trouble with Sympy, which cannot handle the printing behaviour which includes the complete types.
The text was updated successfully, but these errors were encountered: