summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #22786 from asmeurer/linalg-namedtuplesHEADmainCharles Harris2023-05-171-0/+8
|\ | | | | ENH: Add namedtuple return types to linalg functions that return tuples
| * Add a changelog entry for #22786Aaron Meurer2022-12-121-0/+8
| |
* | DOC: delete out-of-date description of ResultType algorithmNathan Goldbaum2023-05-161-20/+4
| |
* | DOC: clarify how inputs of PyArray_ResultType are usedNathan Goldbaum2023-05-161-5/+5
| |
* | Merge branch 'main' into deprecate-find-common-typeCharles Harris2023-05-13195-1522/+3510
|\ \
| * | DOC: rm bool8 from scalars summary page.Ross Barnowski2023-05-121-2/+0
| | |
| * | Update index.rstDhavalParmar612023-05-081-1/+0
| | |
| * | DOC: Add release note for uint64/int64 comparison changeSebastian Berg2023-05-041-0/+9
| | |
| * | DOC: Fix link to site.cfg.exampleDominic Davis-Foster2023-05-021-1/+1
| | | | | | | | | | | | It was using Markdown syntax, but this is a ReStructedText file.
| * | DOC: Fix return type of `PyArray_EinsteinSum` (#23684)Yuki2023-04-291-1/+1
| | | | | | | | | | | | The return type `PyArray_EinsteinSum` is `PyArrayObject*`, not `PyObject*`
| * | Merge pull request #23600 from HaoZeke/f2pyFuncFix_23598Sebastian Berg2023-04-281-1/+1
| |\ \ | | | | | | | | BUG: Infer return types for Fortran functions in `f2py`
| | * \ Merge branch 'main' into f2pyFuncFix_23598Sebastian Berg2023-04-2617-238/+407
| | |\ \
| | * | | MAINT,TST: No printing in f2py testsRohit Goswami2023-04-161-1/+1
| | | | |
| * | | | DOC: Fixing incorrect sentence - Boolean array indexing #23377 (#23489)Younes2023-04-281-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Fixing incorrect sentence - Boolean array indexing #23377 * Update doc/source/user/basics.indexing.rst Co-authored-by: Ross Barnowski <rossbar@berkeley.edu> --------- Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net> Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
| * | | | Merge pull request #23528 from seberg/allow-backcomp-buildsMatti Picus2023-04-283-49/+102
| |\ \ \ \ | | | | | | | | | | | | ENH: Allow, and default to, downstream building with old API
| | * | | | Apply suggestions from code reviewSebastian Berg2023-04-283-10/+12
| | | | | | | | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| | * | | | DOC: Align default with what the NEP draft saysSebastian Berg2023-04-251-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have three choices: 1. Be compatible with limited API (oldest supported Python version) 2. Be compatible with everything on the same Python version (this) 3. Be strict and default to NEP 29 This just rephrases things to be 2. Because our API version was not bumped over the relevant time frame, it is actually also compatible with the first.
| | * | | | MAINT,DOC: Update based on Ralf's reviewSebastian Berg2023-04-203-6/+11
| | | | | |
| | * | | | DOC: Add API change section to reviewer docsSebastian Berg2023-04-181-1/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This seemed like the clearest place to add a more in-depth note on it. The actual table, etc. also would make sense, but there you probably see the `MinVersion` anyway...
| | * | | | DOC: Start on docs about compatible downstream buildsSebastian Berg2023-04-112-48/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This still needs to be expanded and maybe removes a bit more than it should. OTOH, the actual changes will mainly be necessary once NumPy 2.0 comes, right now the old scheme remains valid.
| * | | | | Merge pull request #18053 from Iamsoto/adding_object_to_einsumSebastian Berg2023-04-281-0/+4
| |\ \ \ \ \ | | | | | | | | | | | | | | ENH: Adding Object dtype to einsum
| | * | | | | DOC: add a release notemattip2023-03-301-0/+4
| | |/ / / /
| * | | | | Merge pull request #22493 from mwtoews/maint-openSebastian Berg2023-04-283-7/+7
| |\ \ \ \ \ | | | | | | | | | | | | | | MAINT: remove redundant open() modes and io.open() alias
| | * | | | | MAINT: remove redundant open() modes and io.open() aliasMike Taves2022-10-293-7/+7
| | | | | | |
| * | | | | | Merge pull request #23666 from seberg/subarray-cleanupMatti Picus2023-04-271-0/+5
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | DEP,BUG: Finalize subarray dtype FutureWarning and fix its assignment
| | * | | | | | DOC: Add release note for expired subarray dtype from arrays FutureWarningSebastian Berg2023-04-261-0/+5
| | | |_|_|/ / | | |/| | | |
| * | | | | | Merge pull request #23358 from seberg/dtype-class-in-typesMatti Picus2023-04-272-0/+7
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | API: Add DType classes into new `numpy.dtypes` module
| | * | | | | | MAINT: Move module to be `np.dtypes` and add release noteSebastian Berg2023-04-122-1/+6
| | | | | | | |
| | * | | | | | API: Add `numpy.types` module and fill it with DType classesSebastian Berg2023-04-121-0/+2
| | | | | | | |
| * | | | | | | Merge pull request #23668 from f380cedric/npzfile-contains-releasenoteCharles Harris2023-04-261-0/+4
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | DOC: add release note for npzfile membership test
| | * | | | | | | MAINT: Correct spelling in file name.Charles Harris2023-04-261-0/+0
| | | | | | | | |
| | * | | | | | | MAINT: Tweak formatting.Charles Harris2023-04-261-2/+3
| | | | | | | | |
| | * | | | | | | DOC: add release note for npzfile membership testf380cedric2023-04-261-0/+3
| | | | | | | | |
| * | | | | | | | Merge pull request #23648 from JulesKouatchou/feature/JulesK/docsMatti Picus2023-04-261-0/+84
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | DOC: Example on how to use np.lib.tracemalloc_domain.
| | * | | | | | | | Change the section (on memory tracing) title to reflect its content.Jules Kouatchou2023-04-251-2/+2
| | | | | | | | | |
| | * | | | | | | | Added indentation for the sample code to be properly displayed.Jules Kouatchou2023-04-251-72/+71
| | | | | | | | | |
| | * | | | | | | | Added an example on how to trace memory in an application with NumPy related ↵Jules Kouatchou2023-04-251-0/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | calls.
| * | | | | | | | | DOC: Convert titles to sentence case (#23643)Talha M2023-04-2614-29/+29
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | Partially addresses #16261.
| * | | | | | | | Merge pull request #23657 from melissawm/ci-skip-docMatti Picus2023-04-261-0/+34
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | DOC: Improve description of skip commands for CI
| | * | | | | | | | Update doc/source/dev/development_workflow.rstMatti Picus2023-04-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Matteo Raso <33975162+MatteoRaso@users.noreply.github.com>
| | * | | | | | | | DOC: Improve description of CirrusCI check Melissa Weber Mendonça2023-04-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [skip travis] [skip azp] [skip cirrus]
| | * | | | | | | | DOC: Improve description of skip commands for CImelissawm2023-04-241-0/+34
| | | | | | | | | |
| * | | | | | | | | Merge pull request #23660 from seberg/finalize-sequence-array-likeCharles Harris2023-04-251-0/+2
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | DEP: Finalize checking for sequence-like if something is array-like
| | * | | | | | | | | DEP: Finalize checking for sequence-like if something is array-likeSebastian Berg2023-04-251-0/+2
| | | |_|/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was always just a stop-gap for shapely basically, so there is no harm finalizing things.
| * | | | | | | | | state an other requirement to build a .f90 based module (#23614)nbehrnd2023-04-251-0/+8
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The generation of a Python module based on a Fortran procedure requires a `Python.h` file.[1] A brief note how to provide this dependency if missing. [1] https://github.com/numpy/numpy/issues/23592 Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
| * | | | | | | | Merge pull request #23644 from charris/post-1.24.3-release-updateMatti Picus2023-04-233-0/+92
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | MAINT: Update main after 1.24.3 release.
| | * | | | | | | | MAINT: Update main after 1.24.3 release.Charles Harris2023-04-223-0/+92
| | | |/ / / / / / | | |/| | | | | |
| * | | | | | | | Merge pull request #23585 from rkern/doc/random-introRalf Gommers2023-04-225-232/+237
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DOC: np.random index reorganization [skip actions] [skip azp]
| | * | | | | | | | DOC: fix two broken links and a couple of very minor textual issuesRalf Gommers2023-04-222-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [skip cirrus] [skip azp] [skip actions]
| | * | | | | | | | DOC: prevent all of the legacy sections from being visible in the index ToCRobert Kern2023-04-201-5/+5
| | | | | | | | | |