-
Notifications
You must be signed in to change notification settings - Fork 14
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
NumPy Versioning Issue #42
Comments
Thanks for pointing this out. I will replace Somehow in Colab, if I install a numpy version > 1.22.0 it still seems to work though (I only get the DeprecationWarning). |
There could be additional versions that still throw the DeprecationWarning. I believe I originally observed that 1.25.2 throws a full error. I didn't test every version in-between sadly. I found 1.22.0 worked and went with that for now. |
I update the package (to version 0.1.10) and it should now also work with the newest versions of numpy. |
It looks like
np.float
is/has been deprecated in NumPy. Currently, GGLasso requires any version of NumPy >= 1.17.3. However, this breaks for versions of NumPy > 1.22.0 wherenp.float
has been fully removed. Maybe this should be considered in the requirements ornp.float
usage should be updated?The text was updated successfully, but these errors were encountered: