summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #10308 from eric-wieser/mask-attr-is-viewMatti Picus2019-05-121-0/+10
|\ | | | | API: Make MaskedArray.mask return a view, rather than the underlying mask
| * API: Make MaskedArray.mask return a view, rather than the underlying maskEric Wieser2019-05-111-0/+10
| | | | | | | | | | | | | | | | 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
* | Merge pull request #12962 from mattip/unpackbitsCharles Harris2019-05-111-0/+5
|\ \ | | | | | | ENH: Add 'bitorder' keyword to packbits, unpackbits
| * | ENH: add 'order' keyword to packbits, unpackbitsmattip2019-05-111-0/+5
| | |
* | | Merge pull request #12586 from hameerabbasi/radix-sortCharles Harris2019-05-111-0/+11
|\ \ \ | | | | | | | | ENH: Implement radix sort
| * | | ENH: Radix sortHameer Abbasi2019-05-111-0/+11
| |/ /
* | | Merge pull request #13416 from bashtage/protect-log-random-generationCharles Harris2019-05-111-0/+11
|\ \ \ | |/ / |/| | BUG: Protect generators from log(0.0)
| * | BUG: Proect generators from log(0.0)Kevin Sheppard2019-04-291-0/+11
| | | | | | | | | | | | Ensure log(0.0) doesn't produce inf/nan values when generating random values
* | | Version corrected in npymath docsManvi072019-05-041-1/+1
| | |
* | | Merge pull request #13336 from mattip/doc-checkRalf Gommers2019-05-011-12/+28
|\ \ \ | |_|/ |/| | BUILD: fail documentation build if numpy version does not match
| * | BUILD, BUG: fix from review, fix bug in git_versionmattip2019-04-251-1/+1
| | |
| * | MAINT: mention 'make dist' in error messsagemattip2019-04-161-2/+2
| | |
| * | BUILD: allow version-check to pass if GITVER is Unknown (sdist build)mattip2019-04-151-2/+4
| | |
| * | BUILD: fail documentation build if numpy version does not matchmattip2019-04-151-11/+25
| | |
* | | Merge pull request #13132 from zerothi/linalg-orderRalf Gommers2019-05-011-1/+59
|\ \ \ | | | | | | | | BLD: Allow users to specify BLAS and LAPACK library link order
| * | | ENH: amended documentation and changed env-vars as suggestedNick Papior2019-03-181-1/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Also added a test to travis (apparently ATLAS=None... is not tested on circleCI). Signed-off-by: Nick Papior <nickpapior@gmail.com>
* | | | Merge pull request #13413 from mattip/doc-linalgCharles Harris2019-04-301-0/+13
|\ \ \ \ | |_|_|/ |/| | | DOC: document existence of linalg backends
| * | | DOC: document existance of linalg backendsmattip2019-04-301-0/+13
| | | |
* | | | Merge pull request #13417 from shoyer/ndarray-non-negativeEric Wieser2019-04-271-1/+1
|\ \ \ \ | |/ / / |/| | | DOC: dimension sizes are non-negative, not positive
| * | | DOC: dimension sizes are non-negative, not positiveStephan Hoyer2019-04-271-1/+1
| | | |
* | | | Merge pull request #13306 from bmakos/Fix#13225Matti Picus2019-04-251-6/+12
|\ \ \ \ | | | | | | | | | | MAINT: better MemoryError message (#13225)
| * | | | DOC: add release notemattip2019-04-251-6/+12
| | | | |
* | | | | Merge pull request #13390 from eric-wieser/quantile-fractionMatti Picus2019-04-251-0/+5
|\ \ \ \ \ | | | | | | | | | | | | ENH: Add support for Fraction to percentile and quantile
| * | | | | ENH: Add support for Fraction to percentile and quantileEric Wieser2019-04-231-0/+5
| | |/ / / | |/| | | | | | | | | | | | | With true division available, using `.0` to convert integers to floats offers no value, and harms compatibility with precise rational types.
* | | | | Merge pull request #13404 from seberg/sebastian-bidsCharles Harris2019-04-251-1/+1
|\ \ \ \ \ | | | | | | | | | | | | DOC: Add Sebastian Berg as sponsored by BIDS
| * | | | | DOC: Add Sebastian Berg as sponsored by BIDSSebastian Berg2019-04-251-1/+1
| | |_|_|/ | |/| | |
* | | | | Merge pull request #13334 from eric-wieser/fix-1-field-unstructuredMatti Picus2019-04-251-0/+8
|\ \ \ \ \ | | | | | | | | | | | | BUG: Fix structured_to_unstructured on single-field types
| * | | | | DOC: Add 1.17 release noteEric Wieser2019-04-231-0/+8
| | |/ / / | |/| | |
* | | | | ENH: Add shape to *_like() array creation (#13046)Peter Andreas Entschev2019-04-251-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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: fix typos in dev/indexmattip2019-04-251-5/+3
| | | | |
* | | | | Merge pull request #13367 from mattip/dev-guideRalf Gommers2019-04-238-65/+247
|\ \ \ \ \ | |/ / / / |/| | | | DOC: reorganize developer docs, use scikit-image as a base for change
| * | | | DOC: changes from reviewmattip2019-04-233-140/+33
| | | | |
| * | | | DOC: reorganize developer docs, use scikit-image as a base for changemattip2019-04-218-58/+347
| | | | |
* | | | | Merge pull request #13371 from eric-wieser/__floor__-and-__ceil__Charles Harris2019-04-221-0/+6
|\ \ \ \ \ | | | | | | | | | | | | BUG/ENH: Make floor, ceil, and trunc call the matching special methods
| * | | | | BUG/ENH: Make floor, ceil, and trunc call the matching special methodsEric Wieser2019-04-191-0/+6
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | MAINT, DOC: Post 1.16.3 release updates.Charles Harris2019-04-213-0/+102
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add 1.16.3 release notes - Add 1.16.3 changelog - Update mailmap
* | | | | DOC: adding release notes for 1.17.0Raghuveer Devulapalli2019-04-191-0/+6
| |/ / / |/| | |
* | | | Merge pull request #10741 from eric-wieser/as_integer_ratioTyler Reddy2019-04-181-0/+6
|\ \ \ \ | | | | | | | | | | ENH: Implement `np.floating.as_integer_ratio`
| * | | | ENH: Implement `np.floating.as_integer_ratio`Eric Wieser2019-04-101-0/+6
| | | | | | | | | | | | | | | | | | | | This matches the builtin `float.as_integer_ratio` and (in recent python versions) `int.as_integer_ratio`.
* | | | | Merge pull request #13218 from debsankha/isfinite-datetimeCharles Harris2019-04-181-0/+5
|\ \ \ \ \ | |_|/ / / |/| | | | ENH: `isfinite` support for `datetime64` and `timedelta64`
| * | | | Merge branch 'master' into isfinite-datetimeMatti Picus2019-04-105-6/+38
| |\ \ \ \ | | |/ / /
| * | | | DOC: added release note for `isfinite` support forDebsankha Manik2019-04-071-0/+4
| | | | | | | | | | | | | | | | | | | | `datetime64` and `timedelta64`
* | | | | Merge pull request #12889 from ivanov/no-pickles-for-youCharles Harris2019-04-161-0/+5
|\ \ \ \ \ | | | | | | | | | | | | BUG: Make allow_pickle=False the default for loading
| * | | | | BUG: load fails when using pickle without allow_pickle=TruePaul Ivanov2019-04-161-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a partial mitigation of #12759. see also https://nvd.nist.gov/vuln/detail/CVE-2019-6446
* | | | | | Merge pull request #13337 from kritisingh1/conjMatti Picus2019-04-162-0/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | | DOC: Add docstrings for consistency in aliases
| * | | | | DOC: Add docstrings for consistency in aliaseskritisingh12019-04-162-0/+2
| | |_|/ / | |/| | |
* | | | | DOC: Add as_ctypes_type to the documentationEric Wieser2019-04-153-4/+5
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | DOC: remove misplaced section at bottom of governance people pageRalf Gommers2019-04-121-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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**
* | | | DOC: list Quansight (company) rather than Quansight Labs (program/division)Ralf Gommers2019-04-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | as Institutional Partner. Also fix a broken link I found. [ci skip] [skip ci] **no ci**
* | | | DOC: update people under BIDS Institutional Partner entry.Ralf Gommers2019-04-111-1/+1
| | | | | | | | | | | | | | | | [ci skip] [skip ci]