| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Building the html docs from source requires a working LaTeX
build environment to get the equations rendered properly.
|
|
|
|
|
|
| |
Added instructions to the developer guide on initializing the
submodules containing numpydoc and the scipy sphinx theme
before building the documentation.
|
| |
|
| |
|
|\
| |
| | |
DOC: update documentation on how to build NumPy
|
| |
| |
| |
| |
| |
| | |
Closes gh-15151
[ci skip]
|
|/
|
|
|
|
|
|
| |
The update is needed so that the links generated by towncrier are
converted in the README.md file generated for the github release
documentation. The code is also simplified.
[skip ci]
|
|
|
|
|
|
|
|
|
|
| |
- Update .mailmap.
- Update release notes.
- Create changelog
- Remove duplicate release note entry.
- Fix release note path in pavement.
[skip ci]
|
|\
| |
| | |
DOC: Fix typos, via a Levenshtein-style corrector
|
| | |
|
|/
|
| |
* DOC: Add links to scipy linalg fuctions and compare numpy.linalg vs scipy.linalg.
|
|\
| |
| | |
API: Use `ResultType` in `PyArray_ConvertToCommonType`
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This slightly modifies the behaviour of `np.choose` (practically a
bug fix) and the public function itself. The function is not used within
e.g. SciPy, so the small performance hit of this implementation
is probably insignificant.
The change should help clean up dtypes a bit, since the whole "scalar
cast" logic is brittle and should be deprecated/removed, and this is
probably one of the few places actually using it.
The choose change means that:
```
np.choose([0], (1000, np.array([1], dtype=np.uint8)))
```
will actually return a value of 1000 (the dtype not being uint8).
|
| |
| |
| |
| | |
Remove reference to outdated basic RNG
|
|\ \
| | |
| | | |
ENH: add support for ILP64 OpenBLAS (without symbol suffix)
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously, f2py loaded the type mappings from a file ``.f2py_f2cmap``
in current directory, at import time.
Make the file name customizable by adding a ``--f2cmap`` command line
option, and postpone loading the file to f2py.run_main().
Moreover, restore the default type mapping in f2py.run_main() before
loading the customizations, so that multiple calls to f2py.run_main() do
not interfere with each other. (For example, numpy.distutils calls f2py
multiple times in the same process.)
|
|/ / |
|
| |
| |
| |
| |
| |
| | |
This work is a follow up of gh-12658.
As requested in gh-15063, add NaT sort support for timedelta64 datatypes also.
Fixes gh-15063
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit c088383cb290ca064d456e89d79177a0e234cb8d and
uses the same kind casting rule for the additional keyword arguments
``to_end`` and ``to_begin``. This results in slightly more leniant
behaviour for integers (which can now have overflows that are
hidden), but fixes an issue with the handling of NaN.
Generally, this behaviour seems more conistent with what NumPy does
elsewhere. The Overflow issue exists similar in many other places
and should be solved by integer overflow warning machinery while
the actual cast takes place.
Closes gh-13103
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This reverts commit c088383cb290ca064d456e89d79177a0e234cb8d and
uses the same kind casting rule for the additional keyword arguments
``to_end`` and ``to_begin``. This results in slightly more leniant
behaviour for integers (which can now have overflows that are
hidden), but fixes an issue with the handling of NaN.
Generally, this behaviour seems more conistent with what NumPy does
elsewhere. The Overflow issue exists similar in many other places
and should be solved by integer overflow warning machinery while
the actual cast takes place.
Closes gh-13103
|
|\ \
| | |
| | | |
Revert "DEP: issue deprecation warning when creating ragged array (NEP 34)"
|
| | | |
|
|\ \ \
| |/ /
|/| | |
DOC: Update HOWTO_RELEASE.rst.txt
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Remove obsolete bits.
- Update Python versions.
- Add some blank lines for clarity
- Make list markup uniform.
[ci skip]
|
|\ \ \
| | | |
| | | | |
MAINT: follow-up cleanup for blas64 PR
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
API, DOC: change names to multivariate_hypergeometric, improve docs
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
[DOC] LaTeX: fix preamble (closes #15026)
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Memo: latex_preamble got removed from Sphinx at 1.6.1, and old
LaTeX package expdlist requires a fix else it breaks LaTeX
if a description list is in a table cell, and it causes anyhow
many LaTeX complaints about Underfull box (badness 10000).
The fix for these complaints is copied over from
https://github.com/scipy/scipy/commit/c881fdea7a7ef7c518b789
and it turns out it is also a fix for the crash in case
a description list is in a table..
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | | |
Apart from the usual modifications, this
- Removes a release note snippet added after towncrier was run
- Removes testing on Python 3.5 as it is dropped for 1.19.x.
|
|\ \ \
| | | |
| | | | |
DOC, API: improve the C-API/Cython documentation and interfaces for random
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
DEP: issue deprecation warning when creating ragged array (NEP 34)
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|