| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
|
| | |
| | |
| | |
| | | |
Trying to address Robert Kerns review comments.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
GitHub has had builtin support for this for quite a while now, via
`skip actions`. So we no longer need this. It's left only in the one
Meson job; that line is already taken care of in gh-23165.
[skip cirrus] [skip circle] [skip azp] [skip travis]
|
|\ \ \
| | | |
| | | | |
BLD: Add compile and runtime checks for AVX512_SPR
|
| | | | |
|
| |/ /
|/| |
| | |
| | | |
[skip ci]
|
|\ \ \
| | | |
| | | | |
DOC: Add N-dimensional argmax/argmin example
|
| | | | |
|
| | | |
| | | |
| | | | |
Co-authored-by: Mukulika <60316606+Mukulikaa@users.noreply.github.com>
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The idea of the flag is not to allow to change it right now, since
there may be some things where that is hard to do in general, and
it doesn't seem relevant: nobody is supposed to use it besides for
testing.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Unfortunately, there is no mechanism provided by (Xe)LaTeX to
automatically fall-back on some rescue font when the main document font
does not support a character. But one can configure each problematic
character to use a specific font, and the FandolSong font from
TeXLive-based LaTeX distributions provides for all currently needed such
problematic characters.
Close: #22930
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
Add link to array iterator example
Co-authored-by: arunkumarkota <arunkumarkota@gmail.com>
Co-authored-by: Arun Kota <arunkota@Aruns-iMac.local>
|
| | |
|
| |
| |
| | |
sizof -> sizeof
|
| |
| |
| |
| |
| |
| |
| | |
CircleCI is currently not set up to fail when docs fail, so this
slipped through the cracks.
It may be that the testing docs should get a bit more changes then
just removing these things.
|
| |
| |
| |
| |
| |
| |
| |
| | |
The docs somehow seem to access `numpy.str`, etc. during the autodoc
generation probably.
This adds a specific warning filter to hide it.
Closes gh-22987
|
| |
| |
| |
| |
| | |
Add note that name access of structured dtypes is allowed.
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
* DOC: Remove Gitpod as a local build option for users
Co-authored-by: Matti Picus <matti.picus@gmail.com>
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This removes an old LaTeX hack if Sphinx is at 5.0.0+. The hack served to insert a newline after each parameter name before its description and is unneeded as Sphinx 5+ does it (otherwise) and it now causes extra vertical whitespace.
If one day in future NumPy pins Sphinx to be at least 5.0.0, the whole thing will become removable.
Closes #22941
EDIT: this also removes \usepackage{xcolor}. Sphinx for many many years uses xcolor if it is available.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Sphinx documentation says
Do not use this key for a latex_engine other than 'pdflatex'.
https://www.sphinx-doc.org/en/master/latex.html#the-latex-elements-configuration-setting
The 'fontenc': r'\usepackage[LGR,T1]{fontenc}' was useful with pdflatex
for support of occasional Greek. But with xelatex and the FreeFont
which is used by default by Sphinx with it, the Greek script is already
supported.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
- Create 1.24.1-changelog.rst
- Create 1.24.1-notes.rst
- Update release.rst
|
|\ \
| | |
| | | |
DOC: fix a couple typos in 1.23 notes.
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
- Create 1.24.0-changelog.rst
- Update 1.24.0-notes
- Update .mailmap
|
| |
| |
| | |
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
| |
| |
| | |
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
| | |
|
| | |
|
|\ \
| | |
| | | |
DOC: Add instruction to do `git pull`
|
| | | |
|
| | |
| | |
| | | |
overriden -> overridden
|
|/ /
| |
| |
| |
| |
| |
| | |
* Add reshape differences to the array API compat document
* Add an item to the array API compat document about reverse broadcasting
* Make some wording easier to read
|
|\ \
| | |
| | | |
DOC: misleading text lead to false hope
|
| | | |
|
|/ /
| |
| | |
This deprecation is no longer mentioned elsewhere on the page.
|
| |
| |
| |
| |
| | |
AxisError did exist, but e.g. ComplexWarning wasn't even properly
included.
|
|\ \
| | |
| | | |
API: Add numpy.testing.overrides to aid testing of custom array containers
|
| | |
| | |
| | |
| | | |
Closes #15544
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
(#22684)
* make isnan, isinf, isfinite, signbit, nextafter aliases
* fixes from review
Co-authored-by: Sebastian Berg <sebastianb@nvidia.com>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This enables building with NumPy on Linux and macOS. Windows support
should be complete to, but is untested as of now and may need a few
tweaks. This contains:
- A set of `meson.build` files and related code generation script
tweaks, header templates, etc.
- One CI job on Linux
- Basic docs on using Meson to build NumPy (not yet integrated in the
html docs, it's too early for that - this is for early adopters right
now).
The build should be complete, with the major exception of SIMD support.
The full test suite passes. See gh-22546 for the tracking issue with
detailed notes on the plan for switching NumPy to Meson as its build
system.
Co-authored-by: Stefan van der Walt <stefanv@berkeley.edu>
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We do not use these in NumPy anymore, and at this point the whole
`npy_interrupt.h` header only exists in case someone is using it
out there.
We may wish to just remove it at some point, vendoring the header is
simple enough after all (and no known downstream usage exists).
See also gh-7545, gh-12541
|
|\ \ \
| | | |
| | | | |
DEP: Next step in scalar type alias deprecations/futurewarnings
|
| | | | |
|