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
Drop python 3.9 support to allow use of python >= 3.10 features such as
np.ndarray | float | None
Union[np.ndarray, float, None]
Optional[Union[np.ndarray, float]]
Numpy just dropped python 3.10 support and now requires python >= 3.11. Any drawbacks of not following numpy with respect to python version?
numpy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Drop python 3.9 support to allow use of python >= 3.10 features such as
np.ndarray | float | None
rather thanUnion[np.ndarray, float, None]
orOptional[Union[np.ndarray, float]]
.Numpy just dropped python 3.10 support and now requires python >= 3.11. Any drawbacks of not following
numpy
with respect to python version?The text was updated successfully, but these errors were encountered: