| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \
| |/ / / /
|/| | | | |
BUG: fix MANIFEST.in for removal of a file in gh-8047.
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
DOC: Release notes for Numpy 1.10.2.
|
| |/ / /
| | | |
| | | |
| | | | |
[ci skip]
|
|\ \ \ \
| | | | |
| | | | | |
MAINT: remove useless files with outdated info from repo root and doc/.
|
| | | | |
| | | | |
| | | | |
| | | | | |
[ci skip]
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
BUG: Fix for #6569, allowing build_ext --inplace
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
TST: attempt to make test_load_refcount deterministic
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Use a different strategy to detect whether np.load creates cycles.
Fixes gh-6571, I hope.
|
|\ \ \ \
| |/ / /
|/| | | |
MAINT: fix mistake in doc upload rule
|
|/ / /
| | |
| | |
| | | |
[ci skip]
|
|\ \ \
| | | |
| | | | |
BUG: Fix partition and argpartition error for empty input. Closes #6530
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Disable view safety checks
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Because of slowdowns caused by the view safety checks introduced in
#5548 they are removed here for 1.10. The plan is to reintroduce
a better version of the checks in 1.11.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove unit tests for the view safety chekcs, which are to be reverted
in the next commit.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
BUG: Revert some import * fixes in f2py.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The files
* capi_maps.py
* crackfortran.py
* f90mod_rules.py
previously used `from .auxfuncs import *` and also called `eval`
without an explicit enviroment. An attempt to use explicit imports
led to errors, and because static code analysis in not sufficient
to determine what functions need to be imported, it is safest to
continue using `import *` pending a major refactoring of f2py.
Closes #6563.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
BUG: fix AttributeError in numpy distutils
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Corrects an AttributeError on windows in some cases caused by #6185
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
DOC: user guide update
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Might be useful to someone.
Excised too opinionated parts and replaced most links to specific
software with the topical software page links.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The user guide was missing a quick tutorial --- the basics.* stuff is
somewhat too complex already.
The "building numpy" instructions also should not be "introductory
material".
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Neither are useful, and will discourage both reading and editing of the
material.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
MAINT: minor update to "make upload" doc build command.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Ensure that http://docs.scipy.org/doc/numpy/reference/ also has the
content of the latest release.
[ci skip]
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
BUG: error in broadcast_arrays with as_strided array
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
Fixes GH6491
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Fix inner product regression
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
DOC: clarify usage of 'argparse' return value (see #4724).
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | | |
In response to Ticket #4724, explain that the 'index_array' returned by
'argparse' can only be used to (directly) sort a one-dimensional input
array.
|
|\ \ \ \
| |/ / /
|/| | | |
Potential fix for #6462
|
| |/ /
| | |
| | |
| | |
| | | |
np.median([]) returns NaN. Fixes bug/regression that raised an IndexError.
Added tests to ensure continued support of empty arrays.
|
|\ \ \
| | | |
| | | | |
Fix use of __doc__ in setup.py for -OO mode
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
BUG: scalar argument to ma.atleast_* return arrays
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The np.ma.atleast_1d, np.ma.atleast_2d, np.ma.atleast_3d and np.ma.diagflat
function return arrays when given a scalar in the same manner as their non-ma
counterparts. Previously these function would return None.
Additionally, the np.ma vstack, row_stack, hstack, column_stack, dstack, and
hsplit functions now raise an expection when given a scalar argument.
closes #3367
|
|\ \ \ \
| | | | |
| | | | | |
BUG: ma.masked_values does not shrink mask if requested
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When called with the shrink parameter set to False, np.ma.masked_values
will create a False filled array mask and not shrink the mask.
Previously the mask would be shrunk to a single False scalar.
closes #2674
|
|\ \ \ \
| | | | |
| | | | | |
Remove version.py.in, no longer used
|
| | | | |
| | | | |
| | | | |
| | | | | |
This file was used by Bento. This was left over and is longer being used.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This file was used by Bento. This was left over and is no longer being used.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Revert 6354 and 5614
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Use assert_array_almost_equal instead of assert_array_equal when
comparing against python.math functions.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Revert mingwpy modifications to distutils. They are causing problems
for non-windows builds and it is better to wait until mingypy is
further along.
This reverts commit 96abd32de241864ee97f30357234cbc9a96c43ae, reversing
changes made to 06af9918f6bf03b8d818ec834f9fb48db57d1489.
|