summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Bump pydata-sphinx-theme from 0.4.2 to 0.4.3dependabot/pip/pydata-sphinx-theme-0.4.3dependabot-preview[bot]2021-02-011-1/+1
| | | | | | | | Bumps [pydata-sphinx-theme](https://github.com/pandas-dev/pydata-sphinx-theme) from 0.4.2 to 0.4.3. - [Release notes](https://github.com/pandas-dev/pydata-sphinx-theme/releases) - [Changelog](https://github.com/pydata/pydata-sphinx-theme/blob/master/docs/changelog.rst) - [Commits](https://github.com/pandas-dev/pydata-sphinx-theme/compare/v0.4.2...v0.4.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Merge pull request #18272 from Carreau/underline-lengthCharles Harris2021-01-311-1/+1
|\ | | | | DOC: Numpydoc warning incorrect underline length.
| * DOC: Numpydoc warning incorrect underline length.Matthias Bussonnier2021-01-311-1/+1
|/ | | | This should make numpydoc complain less.
* Merge pull request #18269 from Carreau/more-doc-fixesMatti Picus2021-01-313-11/+9
|\ | | | | DOC: Nupydoc format space before `:` in Parameters
| * DOC: Nupydoc format space before `:` in ParametersMatthias Bussonnier2021-01-313-11/+9
|/ | | | Missing `s` in two spellings.
* Merge pull request #18233 from rgommers/accept-nep23Ralf Gommers2021-01-311-3/+6
|\ | | | | NEP: accept NEP 23 (backwards compatibility policy)
| * MAINT: Remove stray quote.Charles Harris2021-01-291-1/+1
| |
| * NEP: accept NEP 23 (backwards compatibility policy)Ralf Gommers2021-01-261-2/+5
| | | | | | | | | | | | Closes gh-16193 [ci skip]
* | Merge pull request #18234 from rgommers/accept-nep46Ralf Gommers2021-01-311-3/+4
|\ \ | | | | | | NEP: accept NEP 46 (sponsorship guidelines)
| * | NEP: accept NEP 46 (sponsorship guidelines)Ralf Gommers2021-01-261-3/+4
| |/ | | | | | | [ci skip]
* | Merge pull request #18262 from charris/post-1.20.0-release-updateMatti Picus2021-01-314-70/+115
|\ \ | | | | | | REL: Update master after 1.20.0 release.
| * | REL: Update master after 1.20.0 release.Charles Harris2021-01-304-70/+115
| | |
* | | DOC: replace 'this platform' with the actual platform in the scalar type ↵Ryan Polley2021-01-301-1/+4
| | | | | | | | | | | | | | | | | | | | | documentation (#18085) In the scalar documentation it's unclear that 'this platform' refers to the platform that the doc build job ran on, so replace it with the name of the platform using python's platform module
* | | Merge pull request #18252 from Carreau/doc-polyutilsCharles Harris2021-01-294-21/+9
|\ \ \ | |/ / |/| | DOC: cleanup of numpy/polynomial.
| * | DOC: cleanup of numpy/polynomial.Matthias Bussonnier2021-01-284-21/+9
| | | | | | | | | | | | | | | Numpydoc format says that the colon need o be omitted if there is no type, there were also some empty Examples Sections
* | | Merge pull request #18150 from seberg/fix-too-many-boolean-indicesCharles Harris2021-01-292-1/+30
|\ \ \ | | | | | | | | BUG: Ensure too many advanced indices raises an exception
| * | | Update numpy/core/src/multiarray/mapping.cSebastian Berg2021-01-291-2/+0
| | | |
| * | | BUG: Ensure too many advanced indices raises an exceptionSebastian Berg2021-01-112-1/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The number of indices is limited to 2*MAXDIMS currently to allow mixing integer indices, e.g. with new indices `np.newaxis` (one removes output dimensions, the other adds new ones). This means that more than MAXDIMS advanced indices can be passed on to the advanced indexing machinery (`MapIterNew`), which did not check for this possibility. Closes gh-18145
* | | | Merge pull request #18255 from mattip/debug-buildRalf Gommers2021-01-291-0/+1
|\ \ \ \ | | | | | | | | | | CI: add an 'apt update'
| * | | | add an 'apt update'mattip2021-01-291-0/+1
| | | | |
* | | | | Merge pull request #18236 from BvB93/dtype-likeRalf Gommers2021-01-294-13/+182
|\ \ \ \ \ | |/ / / / |/| | | | ENH: Add aliases for commonly used dtype-like objects
| * | | | MAINT: typo fix: `_UInt8Codes` -> `_Int8Codes`Bas van Beek2021-01-291-1/+1
| | | | |
| * | | | ENH: Added aliases for commonly used dtype-like objectsBas van Beek2021-01-262-4/+165
| | | | |
| * | | | MAINT: Ensure that the `_SupportsDType` protocol can only take dtypes; not ↵Bas van Beek2021-01-263-10/+18
| | |_|/ | |/| | | | | | | | | | | | | | | | | | arbitrary dtype-like objects xref https://github.com/numpy/numpy/pull/13578
* | | | Merge pull request #18253 from rgommers/doc-novalueMatti Picus2021-01-291-2/+14
|\ \ \ \ | | | | | | | | | | DOC: improve description of `_NoValue`
| * | | | DOC: improve description of `NoValue`.Ralf Gommers2021-01-291-2/+14
| | |_|/ | |/| | | | | | | | | | [ci skip]
* | | | Merge pull request #18229 from BvB93/__all__Ralf Gommers2021-01-294-100/+87
|\ \ \ \ | | | | | | | | | | MAINT: Clean up all module-level dunders
| * | | | MAINT: Removed annotations for `__NUMPY_SETUP__`, `__deprecated_attrs__` and ↵Bas van Beek2021-01-274-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `__expired_functions__` Removing them as their "public" nature is somewhat questionable.
| * | | | TST: Add module-based tests to the `pass` testsBas van Beek2021-01-251-0/+23
| | | | |
| * | | | ENH: Add annotations for certain module-level dundersBas van Beek2021-01-252-0/+15
| | | | |
| * | | | STY: Remove `__all__` in favor of explicit reexportsBas van Beek2021-01-251-100/+54
| | | | |
* | | | | Merge pull request #18251 from Carreau/more-docsRalf Gommers2021-01-292-8/+7
|\ \ \ \ \ | |_|/ / / |/| | | | DOC: more misc fixes of syntax
| * | | | DOC: more mist fixes of syntax.Matthias Bussonnier2021-01-282-8/+7
|/ / / / | | | | | | | | | | | | | | | | Space before colon, or missing colon in see-also, typo in parameter names, casing in See Also.
* | | | Merge pull request #18248 from Carreau/see-also-upperMatti Picus2021-01-281-91/+91
|\ \ \ \ | | | | | | | | | | DOC: See also -> See Also (casing)
| * | | | DOC: See also -> See Also (casing)Matthias Bussonnier2021-01-271-91/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Numpydoc seem to suggest Also should be uppercase, and as far as I can tell this is the main spelling found in this code base: $ rg '^ +See also$' | wc -l 109 $ rg '^ +See Also$' | wc -l 814 This commit update one offending file that contain ~90 lowercase `See also`.
* | | | | Merge pull request #18247 from Carreau/arf-IIMatti Picus2021-01-288-27/+21
|\ \ \ \ \ | | | | | | | | | | | | DOC: Misc numpydoc format fixes
| * | | | | DOC: Misc numpydoc format fixesMatthias Bussonnier2021-01-278-27/+21
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Via prototype docstring autoreformatter; and cherry-picked to mostly include spacing issues around colons in parameters and see also. When no space is present numpydoc tend to miss-parse those sections A couple of typos are fixed as well.
* | | | | Merge pull request #18238 from rsokl/patch-1Matti Picus2021-01-281-8/+8
|\ \ \ \ \ | |/ / / / |/| | | | DOC: __array__ accepts a dtype argument
| * | | | DOC: __array__ accepts a dtype argumentRyan Soklaski2021-01-261-8/+8
| | | | |
* | | | | Merge pull request #18245 from rgommers/fix-bdisteggCharles Harris2021-01-271-1/+2
|\ \ \ \ \ | |/ / / / |/| | | | BLD: fix issue with `bdist_egg`, which made `make dist` in doc/ fail
| * | | | BLD: fix issue with `bdist_egg`, which made `make dist` in doc/ failRalf Gommers2021-01-271-1/+2
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | This issue came in because of commit 9b3f65096e a month ago. `bdist_egg` has always been missing from the command list, but that wasn't a problem because missing commands were simply ignored by the validation. After that commit we started raising a RuntimeError instead.
* | | | Merge pull request #18223 from SnoopJeDi/fix_random-generator-choice_docCharles Harris2021-01-261-1/+8
|\ \ \ \ | | | | | | | | | | DOC: Improve doc for numpy.random.Generator.choice
| * | | | Clarify description of exampleJames Gerity2021-01-261-2/+2
| | | | |
| * | | | Mark example as randomJames Gerity2021-01-261-1/+1
| | | | |
| * | | | DOC: add example of sampling from 2-D arrayJames Gerity2021-01-241-0/+7
| | | | |
| * | | | DOC: Drop '1-D' from docstringJames Gerity2021-01-241-1/+1
| | | | |
* | | | | Merge pull request #18230 from seberg/issue-17977Charles Harris2021-01-263-47/+99
|\ \ \ \ \ | | | | | | | | | | | | DOC: Clarify the type alias deprecation message
| * | | | | Fix ref to user guide in release notes.Ross Barnowski2021-01-262-1/+3
| | | | | |
| * | | | | Apply suggestions from code reviewSebastian Berg2021-01-262-5/+4
| | | | | | | | | | | | | | | | | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
| * | | | | Update numpy/__init__.pySebastian Berg2021-01-261-6/+4
| | | | | | | | | | | | | | | | | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>