-
-
Notifications
You must be signed in to change notification settings - Fork 11.1k
DEP: Deprecate setting the strides and dtype of a numpy array #28901
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
76303cf
DEP: Deprecate setting the dtype or strides of a numpy array
eendebakpt c27f61a
review comments
eendebakpt f9a2e00
adjust tests
eendebakpt 11f6569
update tests
eendebakpt aacef24
ci
eendebakpt 052da80
ci
eendebakpt 3d36fb9
ci
eendebakpt c49db94
cleanup
eendebakpt 782cf38
ci
eendebakpt a306469
ci
eendebakpt b0d908e
ci
eendebakpt 23114ff
fix for ft build
eendebakpt 07c776b
use private setter
eendebakpt 3050ecd
Merge branch 'main' into deprecate_array_stride_set
eendebakpt e52e6ca
ruff
eendebakpt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci
- Loading branch information
commit aacef24bb11e09c8ca097df7ecdbc67473847622
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer not to have
_set_dtype
at all, but if we keep it, then this seems a good place to use it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, the idea of having this work around, is exactly the ability to avoid any warning context managers both in NumPy (and potentially outside of NumPy).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. I wanted to be on the safe side since there is a difference between
.dtype = ...
and._set_dtype(...)
for subclasses that override setting attributes. Here array is created bynp.asarray
so it is fine and I will update the code.