| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| | |
API: Make MaskedArray.mask return a view, rather than the underlying mask
|
| | |
| |
| |
| |
| |
| |
| |
| | |
This prevents consumers from reshaping the mask in place, which breaks things
As a result, `x.mask is x.mask` returns `False`, but this was already true of `x.data is x.data`.
May also be related to gh-10270
|
| |\ \
| | |
| | | |
ENH: Add 'bitorder' keyword to packbits, unpackbits
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
ENH: Implement radix sort
|
| | |/ / |
|
| |\ \ \
| |/ /
|/| | |
BUG: Protect generators from log(0.0)
|
| | | |
| | |
| | |
| | | |
Ensure log(0.0) doesn't produce inf/nan values when generating random values
|
| | | | |
|
| |\ \ \
| |_|/
|/| | |
BUILD: fail documentation build if numpy version does not match
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | |
| | | | |
BLD: Allow users to specify BLAS and LAPACK library link order
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Also added a test to travis (apparently ATLAS=None... is not tested
on circleCI).
Signed-off-by: Nick Papior <nickpapior@gmail.com>
|
| |\ \ \ \
| |_|_|/
|/| | | |
DOC: document existence of linalg backends
|
| | | | | |
|
| |\ \ \ \
| |/ / /
|/| | | |
DOC: dimension sizes are non-negative, not positive
|
| | | | | |
|
| |\ \ \ \
| | | | |
| | | | | |
MAINT: better MemoryError message (#13225)
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
ENH: Add support for Fraction to percentile and quantile
|
| | | |/ / /
| |/| | |
| | | | |
| | | | | |
With true division available, using `.0` to convert integers to floats offers no value, and harms compatibility with precise rational types.
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
DOC: Add Sebastian Berg as sponsored by BIDS
|
| | | |_|_|/
| |/| | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
BUG: Fix structured_to_unstructured on single-field types
|
| | | |/ / /
| |/| | | |
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* ENH: Added shape argument to *_like() array creation functions
* ENH: C backend adjustments for shape argument on *_like()
* TST: Added test for shape argument in *_like() functions
* ENH: Added PyArray_NewLikeArrayWithShape()
This change maintains backwards compatibility, rather than passing new
arguments to PyArray_NewLikeArray().
* BUG: Fix for PyArray_NewLikeArrayWithShape strides and ndim == 0
Arrays created with new shapes should not take into consideration the original
array's stride, and ndim == 0 should not be a case to ignore a new shape, as
the caller may request a 0d array.
* REL: Updates for C-API, version 1.17.x
* Add comments to cversions.txt (new PyArray_NewLikeArrayWithShape function)
* Increment C_API_VERSION to 1.17 in setup_common.py
* Revert "REL: Updates for C-API, version 1.17.x"
This reverts commit 807f512ebeb7797ad374d845e41015948afcc708.
* Revert exposing PyArray_NewLikeArrayWithShape on C-API
* DOC: fix versionadded for *_like() shape argument
* STY: add missing spaces in array initializers
* ENH: empty_like raises ValueError
This occurs when shape is defined and number of dimensions match but
order is 'K'.
* TST: test for exception of *_like() functions
* DOC: release note for shape argument in *_like() functions
* DOC: fix *_like() documentation on raises
* BUG: *_like() raises for non-C/F-layout arrays
* TST: change *_like() shapes to prevent NPY_RELAXED_STRIDE_DEBUG=1 failure
* Move empty_like() exception to C implementation
* Update *_like() ValueError documentation
* Rearrange stride computation for *_like() if new shape and order='K'
* Change handling of order= for *_like()
- If order='K' try to keep, otherwise, order='C' is implied
- Do not raise ValueError anymore
* Fix *_like() tests
|
| | | | | | |
|
| |\ \ \ \ \
| |/ / / /
|/| | | | |
DOC: reorganize developer docs, use scikit-image as a base for change
|
| | | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
BUG/ENH: Make floor, ceil, and trunc call the matching special methods
|
| | | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously `np.ceil` would call `o.ceil()` on each element of an object array.
This is inconsistent with the builtin python way of handling this, calling `o.__ceil__()`.
This changes these three functions to use the corresponding functions in the `math` module, which do the special method lookup.
As a result, they now work on arrays of `Fraction` and `Decimal` objects.
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- Add 1.16.3 release notes
- Add 1.16.3 changelog
- Update mailmap
|
| | |/ / /
|/| | | |
|
| |\ \ \ \
| | | | |
| | | | | |
ENH: Implement `np.floating.as_integer_ratio`
|
| | | | | |
| | | | |
| | | | |
| | | | | |
This matches the builtin `float.as_integer_ratio` and (in recent python versions) `int.as_integer_ratio`.
|
| |\ \ \ \ \
| |_|/ / /
|/| | | | |
ENH: `isfinite` support for `datetime64` and `timedelta64`
|
| | |\ \ \ \
| | |/ / / |
|
| | | | | |
| | | | |
| | | | |
| | | | | |
`datetime64` and `timedelta64`
|
| |\ \ \ \ \
| | | | | |
| | | | | | |
BUG: Make allow_pickle=False the default for loading
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
a partial mitigation of #12759.
see also https://nvd.nist.gov/vuln/detail/CVE-2019-6446
|
| |\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
DOC: Add docstrings for consistency in aliases
|
| | | |_|/ /
| |/| | | |
|
| |/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is mentioned in the release notes, so probably should be discoverable.
Change those mentions to links.
Fix the docstring to not cause sphinx to emit warnings.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Thanks to @mattip for pointing this out. The removed bit is a copy
of what's on the main governance page (where it belongs).
So just deleting here.
[ci skip] [skip ci]
**no ci**
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
as Institutional Partner.
Also fix a broken link I found.
[ci skip]
[skip ci]
**no ci**
|
| | | | |
| | | |
| | | |
| | | | |
[ci skip] [skip ci]
|