summaryrefslogtreecommitdiff
path: root/doc/source
Commit message (Collapse)AuthorAgeFilesLines
* Update doc with better wordingAmrit K2021-11-151-5/+4
|
* DOC: clarify doc about default int type on windowsAmrit K2021-04-241-1/+2
| | | | | Update documentation to clarify that integer arrays created are of type int32 on windows platform. See #18540.
* DOC: Add favicon (#18841)Tania Allard2021-04-235-0/+2
|
* Fix typo in random docsChristina Hedges2021-04-221-1/+1
| | | | | DOC Fix typo in random docs `Randomstate` -> `RandomState`
* Merge pull request #18823 from Nirzak/patch-1Charles Harris2021-04-211-1/+1
|\ | | | | MAINT: Minor fix to add reference link to numpy.fill_diagonal function
| * Minor fix to add reference link to numpy.fill_diagonal functionNirjas Jakilim2021-04-211-1/+1
| |
* | Merge pull request #18797 from zoj613/zig_docCharles Harris2021-04-211-3/+7
|\ \ | | | | | | DOC: Update random c-api documentation
| * | DOC: Update random c-api documentationzoj2021-04-171-3/+7
| | |
* | | Merge pull request #18777 from tupui/test_guidelines_random_assertsCharles Harris2021-04-211-3/+13
|\ \ \ | |_|/ |/| | DOC: update random and asserts in test guidelines
| * | Update doc/source/reference/routines.testing.rstPamphile ROY2021-04-171-1/+1
| | | | | | | | | Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com>
| * | Merge branch 'main' into test_guidelines_random_assertsPamphile ROY2021-04-161-0/+1
| |\ \ | | |/
| * | DOC: not recommended sectionPamphile ROY2021-04-151-1/+6
| | |
| * | DOC: remove legacy global seed, assert_almost_equal and assert_Pamphile ROY2021-04-141-3/+8
| | |
* | | MAINT: Fix spelling and layout.Charles Harris2021-04-191-5/+4
| | |
* | | line breaks maintaining <80 charsAyush Verma2021-04-201-1/+5
| | |
* | | added 'PYTHON variable'Ayush Verma2021-04-201-1/+1
| | |
* | | word wrapped around 80 chars and proper ellipses as per suggestedAyush Verma2021-04-201-5/+2
| | |
* | | added note about import numpy error when building numpy in a venvAyush Verma2021-04-191-0/+9
| |/ |/|
* | DOC: Document newer pytest conventionsEric Larson2021-04-161-0/+1
|/
* MAINT: Fix comma usage.Charles Harris2021-04-131-1/+1
|
* More concise "How to import NumPy" descriptionTim Hoffmann2021-04-131-8/+4
|
* DOC: trim headings - purely cosmetic.Ross Barnowski2021-04-121-14/+14
|
* DOC: Update howto-docs with link to NumPy tutorials.melissawm2021-04-121-19/+30
| | | | | | Includes a few textual fixes suggested in gh-16386 and new link to Daniele Procidas's newly renamed Diátaxis Framework (instead of the Divio blog).
* BLD: introduce use of BLAS_LIBS and LAPACK_LIBS in distutils/system_info ↵drhpc2021-04-111-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (#18737) This enables the behaviour of the build honouring the environment variables NPY_BLAS_LIBS, NPY_CBLAS_LIBS, and NPY_LAPACK_LIBS to select any standard-conforming implementation of the f77 interfaces. This is needed to sanely have automated builds provide BLAS libs in a way common to multiple packages (using some environment variable, BLAS_LIBS being canonical, but variants exist). Hacking a site.cfg is fine for a single user, but does not scale well. As example, pkgsrc, the NetBSD packages collection, offers differing builds of Netlib or OpenBLAS, the latter in variables openblas, openblas_openmp, and openblas_pthread. With this patch, differing builds can just use different variable values like NPY_BLAS_LIBS=-lblas NPY_CBLAS_LIBS=-lcblas \ NPY_LAPACK_LIBS='-lapack -lblas' \ python setup.py build NPY_BLAS_LIBS=-lopenblas_pthread NPY_CBLAS_LIBS= \ NPY_LAPACK_LIBS='-lopenblas_pthread' \ python setup.py build (NPY_LAPACK_LIBS contains reference to BLAS, too, for packages that only use LAPACK and would miss underlying BLAS otherwise for static linking.)
* Merge pull request #18722 from tech-gian/mainCharles Harris2021-04-052-64/+4
|\ | | | | DOC: deduplicate dtype basic types (2)
| * Update, removed unnecessary thingsGiannis Zapantis2021-04-051-11/+2
| |
| * Update, sized aliasesGiannis Zapantis2021-04-051-0/+2
| |
| * DOC: typo fixGiannis Zapantis2021-04-031-1/+1
| |
| * DOC: closing 17486tech-gian2021-04-031-62/+9
| |
* | DOC: Simplifies Mandelbrot set plot in Quickstart guide (#18712)Melissa Weber Mendonça2021-04-041-7/+9
| | | | | | Closes gh-18409
* | Merge pull request #18705 from rgommers/governance-people-updateMatti Picus2021-04-011-27/+11
|\ \ | | | | | | DOC: update Steering Council membership and people on governance page
| * | DOC: update Steering Council membership and people on governance pageRalf Gommers2021-03-311-27/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We welcome two new SC members, Melissa and Inessa. The people moving to emeritus status have not been very active or not active at all for a while. They all still have commit rights, and if they get more active again their membership can be restored. There are also a few changes to the NumFOCUS Subcommittee and Institutional Partners members, to reflect recent changes. After this update, all listed people are currently actively contributing to NumPy. That does not only include technical contributions, but also participating in community meetings, mentoring newcomers, and many other activities across the project. [ci skip]
* | | Merge pull request #18659 from rgommers/add-conda-yamlCharles Harris2021-03-311-6/+17
|\ \ \ | |/ / |/| | DEV: add a conda environment.yml with all development dependencies
| * | DOC: update development environment docs for conda virtual environmentsRalf Gommers2021-03-211-6/+17
| | |
* | | DEP: Disable PyUFunc_GenericFunction and PyUFunc_SetUsesArraysAsDataSebastian Berg2021-03-291-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | Both functions have been deprecated in 1.19.x without complaints (so far). The first function is largely identical to a Python ufunc call. The second function had served internal NumPy purposes until NumPy 1.6 (probably), and since then had a comment that it should probably be removed (it was not documented).
* | | Merge pull request #18689 from cdahlin/absolute-beginner-doc-clarificationCharles Harris2021-03-292-7/+9
|\ \ \ | | | | | | | | DOC: Change matrix size in absolute beginners doc.
| * \ \ Merge branch 'main' of https://github.com/cdahlin/numpy into ↵Christopher Dahlin2021-03-281-5/+6
| |\ \ \ | | | | | | | | | | | | | | | absolute-beginner-doc-clarification
| | * | | Changed doc code to be consistent with the images.Christopher Dahlin2021-03-281-7/+9
| | | | |
| * | | | Changed matrix size in absolute beginners doc.Christopher Dahlin2021-03-282-2/+3
| |/ / /
* | | | REL: Update main after 1.20.2 release.Charles Harris2021-03-272-0/+50
|/ / /
* | | Docs: simd-optimizations.rst: fix basline typo (#18680)Maxim Belkin2021-03-251-2/+2
| | |
* | | Merge pull request #18652 from timhoffm/doc-plotRalf Gommers2021-03-215-11/+14
|\ \ \ | |/ / |/| | DOC: Update some plotting code to current Matplotlib idioms
| * | DOC: Update some plotting code to current Matplotlib idiomsTim Hoffmann2021-03-215-11/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | - 3D Axes are created via add_subplot(projection='3d') - There is now a `stairs()` function that's specifically designed for showing histogram curves - Labels should be passed as keyword arguments to the plot functions instead of to `legend()`, which reduces the risk of mixing them up. - ensure equal axis scaling in the meshgrid example
* | | Merge pull request #18579 from mwtoews/refactor-dictRalf Gommers2021-03-211-5/+4
|\ \ \ | | | | | | | | MAINT: OrderedDict is no longer necessary from Python 3.7
| * | | MAINT: OrderedDict is no longer necessary from Python 3.7Mike Taves2021-03-081-5/+4
| | | |
* | | | MAINT: use super() as described by PEP 3135Mike Taves2021-03-191-9/+7
| |/ / |/| |
* | | DOC: Make inline code example consistent in ufunc referenceAndras Deak2021-03-181-2/+2
| | |
* | | MAINT: Fix missed replacement of rg by rng.Charles Harris2021-03-151-1/+1
| | |
* | | DOC: Consistently use rng as variable name for random generatorsTim Hoffmann2021-03-154-31/+31
| | |
* | | Merge pull request #17636 from leonarduschen/update-navbar-linked-pageMatti Picus2021-03-141-0/+1
|\ \ \ | | | | | | | | MAINT: Bump pydata-sphinx-theme and set logo link to index