| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.8.1 to 2.9.0.
- [Release notes](https://github.com/pytest-dev/pytest-cov/releases)
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.8.1...v2.9.0)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\
| |
| | |
MAINT: Bump hypothesis from 5.14.0 to 5.15.1
|
|/
|
|
|
|
|
| |
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 5.14.0 to 5.15.1.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-5.14.0...hypothesis-python-5.15.1)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
|
|\
| |
| | |
MAINT: Streamline download-wheels.
|
|/
|
|
|
|
| |
- Makes specifying name patterns simpler
- Makes name pattern reject dev versions unless specified.
- Makes progress printing aligned and more concise.
|
|
|
|
|
|
|
|
|
|
| |
* reconstruct testing doc
* Update doc/TESTS.rst.txt
* DOC: add docstring for numpy.test
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
Co-authored-by: Matti Picus <matti.picus@gmail.com>
|
|\
| |
| | |
ENH: include dt64/td64 structs and funcs and tests in __init__.pxd.
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
BUG: Fix dtype leak in `PyArray_FromAny` error path
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Also adds a test to bincount which will run into this path.
The leak can be triggered by using a reference count checker
on the test suit (e.g. pytest-leaks).
Closes gh-16339
|
|\ \ \
| | | |
| | | | |
BUG: Indentation for docstrings
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* ENH: Create download dir if not present for download-wheels
* TST: Add tests for download-wheels
* MAINT: use exist_ok=True for os.makedirs in download-wheels
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
* MAINT: Remove test for download_wheels
* MAINT: Remove directory creation and error if dir not present
* MAINT: Print total files download and remove err for 0 search results
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
|\ \ \ \
| |/ / /
|/| | | |
BUG: np.info does not show keyword-only arguments
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Using inspect.signature instead of `np.compat.getargspec` solves this problem.
`inspect.signature` also handles stripping the `self` argument of methods for us.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Remove support for Apple Accelerate, since it is buggy. A build error should
occur on most or all setups if linked against Accelerate. Test or import failures
should occur on setups where Accelerate is picked up dynamically.
Co-authored-by: Warren Weckesser <warren.weckesser@gmail.com>
|
| |/ /
|/| |
| | | |
Remove f-strings from setup.py to allow for an informative error message for python<3.6 users. Closes #16345.
|
|\ \ \
| | | |
| | | | |
BUG: Fix refcounting in add_newdoc
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
this is a trivial refcounting fix, since this function is mostly
used only at startup, the small refcounting issue was not noticed
until the new tests were added.
|
|\ \ \ \
| | | | |
| | | | | |
CI: Create a link for the circleCI artifact
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
DOC: Fix spelling typo - homogenous to homogeneous. (#16324)
|
| | | | | |
|
|\ \ \ \ \
| |_|_|_|/
|/| | | |
| | | | |
| | | | | |
LSchroefl/link_SciPy_multidimensional_interpolation
DOC: link np.interp to SciPy's interpolation functions (closes #14154)
|
| | | | |
| | | | |
| | | | | |
Co-authored-by: Ross Barnowski <rossbar@berkeley.edu>
|
| | |_|/
| |/| | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When __getitem__ fails, assignment falls back on __iter__, which may not
have the same length as __len__, resulting in a segfault.
See gh-7264.
* BUG: Don't rely on __len__ for safe iteration.
Skip __len__ checking entirely, since this has no guarantees of being
correct. Instead, first convert to PySequence_Fast and use that length.
Also fixes a refleak when creating a tmp array fails.
See gh-7264.
* TST: Update test for related edge-case.
The previous fix more gracefully handles this edge case by skipping the
__len__ check. Rather than raising with an unhelpful error message, just
create the array with whatever elements C() actually yields.
See gh-7264.
|
| | | |
|
|\ \ \
| | | |
| | | | |
MAINT: Stop Using PyEval_Call* and simplify some uses
|
| | | |
| | | |
| | | |
| | | | |
Co-authored-by: Charles Harris <charlesr.harris@gmail.com>
|
| | |/
| |/|
| | |
| | |
| | | |
Python 3.9 started to deprecate these calls and the PyObject_Call*
variants are equivalent or nicer in any case.
|
|\ \ \
| |/ /
|/| | |
MAINT: Bump numpydoc version
|
|/ /
| |
| |
| |
| |
| |
| | |
Fixes problem with citation (reference) anchors in rendered docs.
Actual fix was in numpy/numpydoc@7c42883, but this bumps to latest
(unreleased) numpydoc version.
|
|\ \
| | |
| | | |
ENH: improve printing of arrays with multi-line reprs
|
| | |
| | |
| | | |
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|