Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #14568 from mattip/hide-config-probe2 | Charles Harris | 2019-09-22 | 1 | -1/+1 |
|\ | | | | | BLD, DOC: fix gh-14518, add release note | ||||
| * | BUILD, DOC: fix 14518, add release note | mattip | 2019-09-22 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #14567 from rgommers/fix-publicapi-test | Charles Harris | 2019-09-21 | 4 | -51/+0 |
|\ \ | |/ |/| | DEP: remove deprecated (and private) numpy.testing submodules. | ||||
| * | DEP: remove deprecate (and private) numpy.testing submodules. | Ralf Gommers | 2019-09-21 | 4 | -51/+0 |
| | | | | | | | | | | | | | | | | | | | | | | Removes these files that were deprecated since 1.15.0: - numpy/testing/decorators.py - numpy/testing/noseclasses.py - numpy/testing/nosetester.py This also resolves a failure in the recently introduced tests in `test_public_api.py` (see gh-14454). Closes gh-14566 | ||||
* | | TST: ensure coercion tables aren't printed on failing public API test | Ralf Gommers | 2019-09-21 | 1 | -19/+21 |
| | | |||||
* | | Merge pull request #14554 from WarrenWeckesser/remove-dup-loop | Sebastian Berg | 2019-09-20 | 1 | -5/+5 |
|\ \ | | | | | | | MAINT: core: Remove duplicated inner loop ee->e from log, exp, sin, cos, sqrt. | ||||
| * | | MAINT: core: Remove duplicated inner loop ee->e from log, exp, sin, cos, sqrt. | Warren Weckesser | 2019-09-20 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | The ufuncs log, exp, sin, cos and sqrt had two occurrences of the signature ee->e, with the corresponding generic loop function PyUFunc_e_e_As_f_f. This change removes the generation of the duplicated function from the array of inner loops for these ufuncs. The *first* entry of ee->e is kept; tests fail if the first one is removed instead of the second. | ||||
* | | | DOC: remove note about Pocketfft license file (non-existing here). | Ralf Gommers | 2019-09-20 | 1 | -5/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes gh-14552 The Pocketfft author (mreineck) agreed on gh-14552 that Pocketfft can simply fall under the NumPy license, no separate license file needed. [ci skip] | ||||
* | | | BUILD: add warn-error option to turn compiler warnings into errors (-Werror) | mattip | 2019-09-20 | 3 | -3/+29 |
| |/ |/| | |||||
* | | MAINT: move the option to build_src, simplifies logic | mattip | 2019-09-20 | 2 | -7/+6 |
| | | |||||
* | | BUG: fixes from review | mattip | 2019-09-20 | 1 | -2/+3 |
| | | |||||
* | | BUILD: fix runtests.py option, fix previous changeset | mattip | 2019-09-20 | 1 | -1/+1 |
| | | |||||
* | | BUILD: only report these headers with --debug-configure | mattip | 2019-09-20 | 1 | -6/+6 |
| | | |||||
* | | BUILD: add --debug-configure option to reduce output, use logger more | mattip | 2019-09-20 | 7 | -39/+32 |
| | | |||||
* | | Merge pull request #14454 from rgommers/test-public-modules | Matti Picus | 2019-09-20 | 7 | -24/+421 |
|\ \ | |/ |/| | MAINT: add test to prevent new public-looking modules being added | ||||
| * | TST: add test to check that (semi-)public API modules can be imported | Ralf Gommers | 2019-09-19 | 2 | -31/+68 |
| | | | | | | | | | | Also remove `numpy.ma.version.py`, it was not importable and served no purpose. | ||||
| * | TST: remove random.entropy from public API test, it was removed in gh-14498 | Ralf Gommers | 2019-09-19 | 1 | -1/+0 |
| | | |||||
| * | TST: make xfailed test for modules in public API pass. | Ralf Gommers | 2019-09-19 | 3 | -4/+39 |
| | | |||||
| * | TST: add comment on public/semi-private modules. | Ralf Gommers | 2019-09-19 | 1 | -21/+31 |
| | | | | | | | | Also address other review comments. | ||||
| * | DOC: add some comments to explain namespace cleanup in numpy/__init__.py | Ralf Gommers | 2019-09-19 | 1 | -0/+4 |
| | | | | | | | | [ci skip] | ||||
| * | MAINT: add missing 'Arrayterator' to `numpy.lib.__all__` | Ralf Gommers | 2019-09-19 | 3 | -8/+19 |
| | | | | | | | | | | | | | | Also finish the TODO about figuring out which np.lib.<submodule>'s are public. This is a giant mess ... | ||||
| * | TST: add details to the public modules test about how to check public-ness | Ralf Gommers | 2019-09-19 | 1 | -0/+15 |
| | | |||||
| * | MAINT: fix issue with `np.lib.mixins.__all__` and import of mixins | Ralf Gommers | 2019-09-19 | 2 | -5/+3 |
| | | |||||
| * | TST: add `core/generate_numpy_api.py` to private-but-present modules | Ralf Gommers | 2019-09-19 | 1 | -0/+1 |
| | | |||||
| * | TST: add test to prevent new public-looking modules being added | Ralf Gommers | 2019-09-19 | 1 | -1/+288 |
| | | |||||
* | | Merge pull request #14525 from mattip/pypy | Sebastian Berg | 2019-09-19 | 1 | -1/+2 |
|\ \ | | | | | | | BUILD, MAINT: run tests with verbose for PyPY, also do not leak resource | ||||
| * | | BUILD, MAINT: run tests with verbose for PyPY, also do not leak resource | mattip | 2019-09-16 | 1 | -1/+2 |
| | | | |||||
* | | | Merge pull request #14531 from WarrenWeckesser/binomial-regression | Matti Picus | 2019-09-19 | 7 | -11/+75 |
|\ \ \ | | | | | | | | | BUG: random: Create a legacy implementation of random.binomial. | ||||
| * | | | BUG: random: Create a legacy implementation of random.binomial. | Warren Weckesser | 2019-09-16 | 7 | -11/+75 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create a legacy implementation of the random_binomial method of RandomState that does not include the "short-circuit" check for n == 0 or p == 0. This ensures that the stream of variates is consistent with the behavior in 1.16. Closes gh-14522. | ||||
* | | | | Merge pull request #14223 from kritisingh1/dep-tests | Matti Picus | 2019-09-19 | 2 | -0/+55 |
|\ \ \ \ | | | | | | | | | | | TST: Add tests for deprecated C functions (PyArray_As1D, PyArray_As1D) | ||||
| * | | | | Fix errors and add release notes for deprecation | kritisingh1 | 2019-09-19 | 1 | -6/+14 |
| | | | | | |||||
| * | | | | TST: Add tests for deprecated C functions (PyArray_As1D, PyArray_As1D) | kritisingh1 | 2019-08-24 | 2 | -0/+47 |
| | | | | | |||||
* | | | | | MAINT: Add new deprecation date. | Charles Harris | 2019-09-18 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | [ci skip] | ||||
* | | | | | Changing ImportWarning to DeprecationWarning | Brigitta Sipocz | 2019-09-18 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | BUG: Avoid ctypes in Generators | Kevin Sheppard | 2019-09-18 | 2 | -4/+4 |
| |_|_|/ |/| | | | | | | | | | | | | | | | | | | | Avoid unnecessary use of ctypes in Generators closes #14131 | ||||
* | | | | Merge pull request #12828 from madphysicist/nditer-instructions | Matti Picus | 2019-09-18 | 1 | -6/+10 |
|\ \ \ \ | | | | | | | | | | | DOC: Updates to nditer usage instructions | ||||
| * | | | | DOC: Updates to nditer usage instructions | Joseph Fox-Rabinovitz | 2019-09-18 | 1 | -6/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | More intuitive use of iterators Context manager introduction version noted explicitly | ||||
* | | | | | DOC: Added missing versionadded to diff(prepend) | Joseph R. Fox-Rabinovitz | 2019-09-18 | 1 | -2/+4 |
|/ / / / | |||||
* | | | | Cleanup old_defines in documention | Seth Troisi | 2019-09-17 | 1 | -1/+1 |
| |/ / |/| | | |||||
* | | | Merge pull request #14526 from mattip/fix-towncrier | Sebastian Berg | 2019-09-16 | 1 | -2/+0 |
|\ \ \ | | | | | | | | | BUG: fix release snippet failures caught only after merging | ||||
| * | | | DOC,BUG: remove section header, add redundant text to leave a blank line | mattip | 2019-09-16 | 1 | -2/+0 |
| | | | | |||||
* | | | | Merge pull request #14520 from felixdivo/patch-1 | Matti Picus | 2019-09-16 | 1 | -4/+3 |
|\ \ \ \ | | | | | | | | | | | Mention that split() returns views into the original array | ||||
| * | | | | Mention that split() returns views into the original array | Felix Divo | 2019-09-16 | 1 | -4/+3 |
| | |_|/ | |/| | | | | | | Also adds a minor code change | ||||
* | | | | Merge pull request #14521 from alexhenrie/lookfor | Matti Picus | 2019-09-16 | 1 | -6/+1 |
|\ \ \ \ | | | | | | | | | | | MAINT: Simplify lookfor function | ||||
| * | | | | MAINT: Simplify lookfor function | Alex Henrie | 2019-09-15 | 1 | -6/+1 |
| |/ / / | |||||
* | | | | Merge pull request #14523 from WarrenWeckesser/random-dup-protos | Matti Picus | 2019-09-16 | 1 | -5/+0 |
|\ \ \ \ | |_|/ / |/| | | | MAINT: random: Remove a few duplicated C function prototypes. | ||||
| * | | | MAINT: random: Remove a few duplicated C function prototypes. | Warren Weckesser | 2019-09-15 | 1 | -5/+0 |
| |/ / | |||||
* | | | Merge pull request #14511 from eric-wieser/fix-flatten_dtype | Matti Picus | 2019-09-16 | 2 | -5/+5 |
|\ \ \ | | | | | | | | | BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly | ||||
| * | | | BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly | Eric Wieser | 2019-09-14 | 2 | -5/+5 |
| | | | | | | | | | | | | | | | | This affects the behavior of merge_arrays. | ||||
* | | | | Merge pull request #13829 from kianasun/add-permutation-axis | Matti Picus | 2019-09-16 | 2 | -14/+79 |
|\ \ \ \ | |_|/ / |/| | | | ENH: Add axis argument to random.permutation and random.shuffle |