summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* DOC: rm bool8 from scalars summary page.Ross Barnowski2023-05-121-2/+0
|
* Update index.rstDhavalParmar612023-05-081-1/+0
|
* 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-2613-238/+343
| |\
| * | 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-282-49/+86
|\ \ \ | | | | | | | | ENH: Allow, and default to, downstream building with old API
| * | | Apply suggestions from code reviewSebastian Berg2023-04-282-8/+10
| | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| * | | MAINT,DOC: Update based on Ralf's reviewSebastian Berg2023-04-202-4/+9
| | | |
| * | | 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-111-48/+51
| | | | | | | | | | | | | | | | | | | | | | | | 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 #22493 from mwtoews/maint-openSebastian Berg2023-04-281-2/+2
|\ \ \ \ | | | | | | | | | | MAINT: remove redundant open() modes and io.open() alias
| * | | | MAINT: remove redundant open() modes and io.open() aliasMike Taves2022-10-291-2/+2
| | | | |
* | | | | Merge pull request #23358 from seberg/dtype-class-in-typesMatti Picus2023-04-271-0/+2
|\ \ \ \ \ | | | | | | | | | | | | API: Add DType classes into new `numpy.dtypes` module
| * | | | | MAINT: Move module to be `np.dtypes` and add release noteSebastian Berg2023-04-121-1/+1
| | | | | |
| * | | | | API: Add `numpy.types` module and fill it with DType classesSebastian Berg2023-04-121-0/+2
| | | | | |
* | | | | | 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
| | | | | | |
* | | | | | | 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-232-0/+50
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | MAINT: Update main after 1.24.3 release.
| * | | | | | | MAINT: Update main after 1.24.3 release.Charles Harris2023-04-222-0/+50
| | |/ / / / / | |/| | | | |
* | | | | | | 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
| | | | | | | |
| * | | | | | | DOC: fix formatting and references.Robert Kern2023-04-202-5/+5
| | | | | | | |
| * | | | | | | DOC: move all new-or-different info to its own page.Robert Kern2023-04-192-105/+30
| | | | | | | |
| * | | | | | | DOC: expand seeding wording.Robert Kern2023-04-191-6/+14
| | | | | | | |
| * | | | | | | DOC: emphasize RNG abbreviation on the front pageRobert Kern2023-04-191-10/+10
| | | | | | | |
| * | | | | | | DOC: NumPy capitalizationRobert Kern2023-04-191-1/+1
| | | | | | | |
| * | | | | | | DOC: Move compatibility policy to separate page.Robert Kern2023-04-192-85/+88
| | | | | | | |
| * | | | | | | DOC: NumPy capitalizationRobert Kern2023-04-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Pamphile Roy <roy.pamphile@gmail.com>
| * | | | | | | DOC: fix referencesRobert Kern2023-04-142-4/+4
| | | | | | | |
| * | | | | | | DOC: compatibility noteRobert Kern2023-04-141-0/+9
| | | | | | | |
| * | | | | | | DOC: Add np.random compatibility policyRobert Kern2023-04-141-0/+76
| | | | | | | |
| * | | | | | | DOC: reorganize np.random index page for general personaRobert Kern2023-04-143-149/+133
| | |_|/ / / / | |/| | | | |
* | | | | | | DOC: Clarify that defining NPY_NO_DEPRECATED_API does not determine ABI ↵Chris Brown2023-04-221-0/+4
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | compatibility (#23631) Closes gh-23610 [skip ci]
* | | | | | DOC: Fix incorrectly formatted roles in c-api document (#23639)yuki2023-04-211-1/+1
| | | | | |
* | | | | | Use correct fill_value instead of value for np.full in release 1.24.0 notejcwchen2023-04-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: jcwchen <jacky82226@gmail.com>
* | | | | | DOC: pull tags and initialize submodules in development install instructionsNathan Goldbaum2023-04-181-4/+8
| |_|_|_|/ |/| | | |