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
I've just tried to install and run Velocyto and found that it's not compatible with numpy > 2.0 due to a deprecated feature,
AttributeError: np.string_was removed in the NumPy 2.0 release. Usenp.bytes_ instead.
AttributeError:
was removed in the NumPy 2.0 release. Use
instead.
Maybe adding version restriction in setup.py would be better ? For example numpy<2.0.0.
setup.py
numpy<2.0.0
Although updating the code to use `np.string_ would be a better solution I believe.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've just tried to install and run Velocyto and found that it's not compatible with numpy > 2.0 due to a deprecated feature,
AttributeError:
np.string_was removed in the NumPy 2.0 release. Use
np.bytes_instead.
Maybe adding version restriction in
setup.py
would be better ? For examplenumpy<2.0.0
.Although updating the code to use `np.string_ would be a better solution I believe.
The text was updated successfully, but these errors were encountered: