summaryrefslogtreecommitdiff
path: root/doc/source/user
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix typo on Byte-swapping pageDavid Gilbertson2022-07-051-1/+1
|/
* DOC: Tell people to use only-binary optionP. L. Lim2022-06-101-1/+4
| | | | | | when installing nightly wheel for downstream testing. [ci skip]
* TST: Enable doctests in IO Howto with testsetup and testcleanup (#21564)Brigitta Sipőcz2022-06-091-57/+72
| | | | | * Adding testsetup and testcleanup for temporary files * Removing doctest skips, and fixing examples.
* DOC: RST Titles Underline reordering (#21677)Matthias Bussonnier2022-06-083-24/+24
| | | | | | | | | | | | | | | | | | | | | * ~ not ^ * = skipped for - * swap - and = underline in files they are swapped * * to = in header underline * - to = and * to - for consitency * A few more change * -> ~ * use ~ instead of + * DOC: Fixup `c-api/array.rst` with further ^ with ~ replacement There is still a fourth level here, which remains using " Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
* DOC: Fix broadcasting documentation. (#21689)Rohit Davas2022-06-081-1/+1
| | | | | The example in documentation says 2d array. however it should be 3d array. as noted in issue 21642
* DIC: Misc RST reformatting.Matthias Bussonnier2022-06-034-10/+11
| | | | | | | | | | | | | | | | | | | | | This contains various RST reformatting. One, moving `(C)` one line up, is specific to a bug in tree-sitter-rst that mis parses this section. Another is adding one black line for a similar reason where `..` is seen as section underline by tree-sitter-rst. This is some shuffling of section underline: try to be consitant, `=`, then `-`, then `~`, with this refactor there is also no more section that use backticks as underline. Note in particular that non-consitency of underline lead to a problem in datetime64 section where "weekmasks" (underlined with `-`) were actually a level-4 heading instead of a level 2 or 3 I guess, and thus were nested under the `busday_count()` section. You'll note also 2 formulas that are under double-quotes as they are not references.
* DOC: move `import_array` and `import_umath` above `PyModule_Create`Ralf Gommers2022-05-281-13/+15
| | | | | | | | | This seems to be a slightly better order, because these initializations are independent of module creation, and if initialization fails then there's no reference to the new module floating around. See https://github.com/scipy/scipy/issues/16231 [skip actions]
* MAINT: Python <3.8 related cleanupsBrigitta Sipőcz2022-05-231-1/+1
|
* MAINT: Python <3.7 related cleanupsBrigitta Sipőcz2022-05-231-6/+4
|
* Merge pull request #19226 from ↵Matti Picus2022-05-191-12/+62
|\ | | | | | | | | seberg/fix-void-cast-safety-promotion-and-comparison API: Fix structured dtype cast-safety, promotion, and comparison
| * DOC: mv details from release note to user guide.Ross Barnowski2022-05-111-3/+40
| |
| * WIP: docs... Need to start a whole new "promotion" probably based on some ↵Sebastian Berg2022-05-091-10/+23
| | | | | | | | stuff in the NEP 50 draft...
* | Remove mentioning deprecated and removed scipy.weave as an alternativeBrigitta Sipocz2022-05-171-19/+1
|/
* DOC: non-orphan page, and casing.Matthias Bussonnier2022-04-231-2/+0
| | | | | | | | user/index is not an orphan page, it is references in the main index.rst Unless there is another reason to mark it as orphan ? Also lowercase a directive, it is the only instance of an uppercase directive in all the source code of numpy/scipy.
* Merge pull request #21133 from seberg/doc-subclassesMatti Picus2022-04-182-0/+45
|\ | | | | DOC: Note interop from "subclassing" docs and explain when to avoid
| * DOC: Note interop from "subclassing" docs and explain when to avoidSebastian Berg2022-03-142-0/+45
| | | | | | | | | | | | | | | | | | | | I think we have consensus that for many users subclassing is a bad idea, but our docs don't really give much of a hint as to why, and what else. We long have the answers for these, so this is a start to actually write them down. Addresses some of the points in gh-20998.
* | DOC: various spell checks and typo fixes (#21314)Logan Thomas2022-04-103-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: contigous -> contiguous * DOC: enlongated -> elongated * DOC: thuse -> thus * DOC: quantityt -> quantity * DOC: suppled -> supplied * DOC: intgrally -> integrally * DOC: assignnent -> assignment * DOC: homoegeneous -> homogeneous * DOC: interpereted -> interpreted * DOC: optimised -> optimized * DOC: Advantanges -> Advantages * DOC: realised -> realized * DOC: parametrizing -> parameterizing * DOC: realised -> realized * DOC: intrisics -> intrinsics * DOC: ablility -> ability * DOC: intrisic -> intrinsic * DOC: unversal -> universal * DOC: machnisms -> mechanisms * DOC: specfiy -> specify * DOC: exclution -> exclusion * DOC: optimzations -> optimizations * DOC: declrations -> declarations * DOC: auto-gernreated -> auto-generated * DOC: it highely recomaned -> it is highly recommended * DOC: exectuing -> executing * DOC: strectched -> stretched * DOC: foriegn -> foreign * DOC: indeded -> intended * DOC: multimdimensional -> multidimensional * DOC: supserseded -> superseded * DOC: generalisation -> generalization * FIX: whitespace before comma
* | Introduce numpy.core.setup_common.NPY_CXX_FLAGSserge-sans-paille2022-04-081-0/+3
| | | | | | | | | | | | | | | | | | Group all C++ flags in one location. This avoids redundancy and makes sure we test the flags we use, and use the flags we test. Fix #21302
* | DOC: Add testing dependencies to build workflow instructions (#21167)Bhavuk kalra2022-03-101-3/+10
| | | | | | | | | | | | Adds note on how to install the test dependencies when building numpy from source. Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* | Merge pull request #21145 from tirthasheshpatel/fix-gh20743Matti Picus2022-03-101-0/+100
|\ \ | | | | | | MAINT, DOC: make np._from_dlpack public
| * | DOC: `from_dlpack(x)` to `numpy.from_dlpack`Tirth Patel2022-03-091-1/+1
| | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| * | DOC: use ELLIPSIS in error message and add note about copyingTirth Patel2022-03-091-3/+4
| | | | | | | | | | | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
| * | DOC: make links to DLPack intersphinxTirth Patel2022-03-091-12/+14
| | |
| * | DOC: add the DLPack protocol to interpolability docsTirth Patel2022-03-031-0/+97
| |/
* | DOC: update recommendation for pinning numpy+3 (#21144)Stefan van der Walt2022-03-091-19/+23
|/ | | | | This now makes it explicit when upper bounds should be set, and returns previous guidance on `numpy_version + 3`. Also adds content on pinning major version for users of the C API.
* Merge pull request #20559 from melissawm/f2py-guideRohit Goswami2022-02-221-297/+1
|\ | | | | DOC: Refactoring f2py user guide
| * DOC: Refactoring f2py user guidemelissawm2022-01-051-297/+1
| |
* | DEP: Remove support for non-tuple nd-indices.Peter Hawkins2022-02-141-8/+0
| | | | | | | | | | This behavior has been deprecated since NumPy 1.15 (https://github.com/numpy/numpy/pull/9686).
* | DOC: Fixed Refguide errors (#19898)Ovee Jawdekar2022-02-082-7/+5
| | | | | | Fixes refguide errors for basics.types, basics.byteswapping, basics.indexing
* | Merge pull request #20185 from melissawm/add-interop-docMatti Picus2022-02-023-0/+424
|\ \ | | | | | | DOC: Added explanation document on interoperability
| * | Remove extra pytorch examplemelissawm2022-01-051-5/+0
| | |
| * | Improved array_wrap description and added PyTorch examplemelissawm2021-11-241-9/+27
| | |
| * | Adding description of __array_finalize__ and __array_wrap__melissawm2021-11-232-28/+78
| | |
| * | Addressing review commentsmelissawm2021-11-221-57/+65
| | |
| * | DOC: Added explanation document on interoperabilitymelissawm2021-11-222-0/+353
| | |
* | | DOC: update python minimal version to build from sourcem10an2022-02-011-1/+1
| | |
* | | DOC,TST: Fix Pandas code example as per new releaseMukulika2022-01-231-1/+1
| | |
* | | MAINT, DOC: discard repeated wordsDimitri Papadopoulos2022-01-133-3/+3
| | |
* | | Merge pull request #20741 from ahesford/cross_your_teesRalf Gommers2022-01-101-0/+98
|\ \ \ | | | | | | | | DOC: add instructions for cross compilation
| * | | DOC: add instructions for cross compilationAndrew J. Hesford2022-01-101-0/+98
| | |/ | |/| | | | | | | Closes #20737.
* | | DOC: fix doctest with true_divide errorPierre de Buyl2022-01-101-1/+1
| | |
* | | DOC: fix more doctestsPierre de Buyl2022-01-101-2/+4
|/ / | | | | | | | | | | | | The erroring code in basics.rec.rst was not tested earlier. 1. Fix formatting 2. Correct wrong code for the structured_to_unstructured example
* | DOC: Updated pointer spacing for consistency. (#20683)Joseph Fox-Rabinovitz2022-01-051-129/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DOC: Updated pointer spacing for consistency. * DOC: Additional modifications to ufunc tutorial - Couple of extra imports removed - Couple of warnings about `const` eliminated - Some whitespace made more conistent - etc. * DOC: Missed a couple of spaces * DOC: Bug in half-float computation example * DOC: Removed unnecessary references to `data`. This commit makes the PR depend on #20689
* | Merge pull request #20693 from Mukulikaa/latex-imagesCharles Harris2022-01-011-5/+5
|\ \ | | | | | | DOC: Replaced svgs with pngs in the Broadcasting doc
| * | DOC: Replaced svgs with pngMukulika2022-01-011-5/+5
| | |
* | | Merge pull request #20691 from Mukulikaa/latex-imagesCharles Harris2021-12-315-0/+0
|\ \ \ | |/ / | | | DOC, ENH: Added pngs for svgs for pdf build
| * | DOC, ENH: Added pngs for svgs for pdf buildMukulika2022-01-015-0/+0
| | |
* | | Merge branch 'main' into doctest_for_pytestPierre de Buyl2021-12-214-12/+12
|\ \ \ | |/ /
| * | DEP: remove NPY_ARRAY_UPDATEIFCOPY, deprecated in 1.14 (#20589)Matti Picus2021-12-181-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * DEP: remove NPY_ARRAY_UPDATEIFCOPY, deprecated in 1.14 * remove more UPDATEIFCOPY * typo: add missing comma * remove a few more UPDATEIFCOPY * Add release note * remove UPDATEIFCOPY from comment (from review)
| * | removed two redundant '\\' typosMuataz Attaia2021-12-161-2/+2
| | |