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
Hi @ThomasTNO,
I was recently using this library as an example for a course lab, but noticed that Numpy has deprecated np.float_ since reaching version 2.0.
np.float_
Since numpy is not version constrained this gave an error, due to its usage here:
mpyc.secure_learning/tno/mpc/mpyc/secure_learning/utils/types.py
Line 26 in 4062358
It should probably be fine to replace it by np.float64, which is the recommended fix, and probably you may want to restrict the numpy version :)
np.float64
Steps to reproduce: install this library in a fresh environment and run one of the example.
The text was updated successfully, but these errors were encountered:
Hi @xQiratNL,
Thanks for noting. Internally this was fixed already. I am working on making the latest versions available asap.
Sorry, something went wrong.
No branches or pull requests
Hi @ThomasTNO,
I was recently using this library as an example for a course lab, but noticed that Numpy has deprecated
np.float_
since reaching version 2.0.Since numpy is not version constrained this gave an error, due to its usage here:
mpyc.secure_learning/tno/mpc/mpyc/secure_learning/utils/types.py
Line 26 in 4062358
It should probably be fine to replace it by
np.float64
, which is the recommended fix, and probably you may want to restrict the numpy version :)Steps to reproduce: install this library in a fresh environment and run one of the example.
The text was updated successfully, but these errors were encountered: