| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | REL: Release 1.8.2v1.8.2maintenance/1.8.x | Julian Taylor | 2014-08-09 | 1 | -1/+1 |
| | | |||||
| * | BLD: compute sha256 sums of build artifacts | Julian Taylor | 2014-08-09 | 1 | -2/+23 |
| | | | | | | | | Using a secure hash allows verifying ther binaries from a gpg signed README.txt. MD5 just kept for legacy users who may not be able to obtain a sha256 utility. | ||||
| * | Merge pull request #4953 from juliantaylor/backports-1.8 | Charles Harris | 2014-08-08 | 3 | -2/+7 |
| |\ | | | | | Backports 1.8 | ||||
| | * | DOC: add 4722 fix and order by importance | Julian Taylor | 2014-08-09 | 1 | -1/+2 |
| | | | |||||
| | * | BUG: Fix seg fault converting empty string to object | Mike Kelly | 2014-08-08 | 2 | -1/+5 |
| |/ | |||||
| * | REL: Release 1.8.2rc1v1.8.2rc1 | Julian Taylor | 2014-08-05 | 2 | -3/+3 |
| | | |||||
| * | Merge pull request #4951 from juliantaylor/release-notes-1.8.2 | Julian Taylor | 2014-08-05 | 2 | -0/+19 |
| |\ | | | | | DOC: add release notes for 1.8.2 | ||||
| | * | DOC: add release notes for 1.8.2 | Julian Taylor | 2014-08-05 | 2 | -0/+19 |
| |/ | | | | [ci skip] | ||||
| * | Merge pull request #4949 from juliantaylor/backports-1.8.2 | Charles Harris | 2014-08-04 | 19 | -27/+210 |
| |\ | | | | | backport important fixes to 1.8 | ||||
| | * | REL: set version number to 1.8.2rc1 | Julian Taylor | 2014-08-05 | 2 | -4/+4 |
| | | | |||||
| | * | TST: update travis-test.sh from 1.9.x branch | Julian Taylor | 2014-08-05 | 2 | -4/+12 |
| | | | |||||
| | * | BUG: Make fftpack._raw_fft threadsafe | Julian Taylor | 2014-08-04 | 2 | -3/+59 |
| | | | | | | | | | see gh-4656 | ||||
| | * | BUG: Prevent division by zero. Closes #650. | szpy | 2014-08-04 | 1 | -1/+3 |
| | | | |||||
| | * | BUG: Fix lack of NULL check in array_richcompare. | Charles Harris | 2014-08-04 | 2 | -1/+25 |
| | | | | | | | | | | | | | The lack of this check led to a segfault. Closes #4613. | ||||
| | * | BUG: incorrect argument order to _copyto in in np.nanmax, np.nanmin | Marten van Kerkwijk | 2014-08-04 | 2 | -2/+27 |
| | | | |||||
| | * | BUG: Hold GIL for types with fields, fixes #4642 | jaimefrio | 2014-08-04 | 1 | -3/+6 |
| | | | | | | | | | | | | | Set the `NPY_NEEDS_PYAPI` flag for types with fields, as these need access to the Python API to manipulate the tuples and dicts holding field information. It remains unset for the base `np.void` type. | ||||
| | * | BUG: svd ufunc typo | alex | 2014-08-04 | 2 | -2/+10 |
| | | | | | | | | | closes gh-4733 | ||||
| | * | BUG: check alignment of strides for byteswap | Julian Taylor | 2014-08-04 | 1 | -3/+3 |
| | | | | | | | | | closes gh-4774 | ||||
| | * | BUG: add missing elementsize alignment check for simd reductions | Julian Taylor | 2014-08-04 | 3 | -1/+36 |
| | | | | | | | | | | | | | e.g. doubles are only aligned to 4 bytes on i386 so one cannot peel them to 16 byte alignment. Closes gh-4853 | ||||
| | * | BUG: wrong selection for orders falling into equal ranges | Julian Taylor | 2014-08-04 | 2 | -3/+25 |
| |/ | | | | | | | | when orders are selected where the kth element falls into an equal range the the last stored pivot was not the kth element, this leads to losing the ordering of smaller orders as following selection steps can start at index 0 again instead of the at the offset of the last selection. Closes gh-4836 | ||||
| * | Merge pull request #4603 from charris/backport-1.8-4602 | Charles Harris | 2014-04-10 | 1 | -1/+1 |
| |\ | | | | | BUG: ifort has issues with optimization flag /O2 | ||||
| | * | BUG: ifort has issues with optimization flag /O2 | cgohlke | 2014-04-09 | 1 | -1/+1 |
| | | | | | | | | | Fixes scipy test failures. | ||||
| * | | REL: Release 1.8.1v1.8.1 | Julian Taylor | 2014-03-25 | 1 | -2/+2 |
| | | | |||||
| * | | Merge pull request #4550 from juliantaylor/datetime-test-fix-1.8 | Julian Taylor | 2014-03-25 | 2 | -5/+12 |
| |\ \ | |/ |/| | Datetime test fix 1.8 | ||||
| | * | TST: backport test_zeros changes from master | Julian Taylor | 2014-03-25 | 1 | -4/+11 |
| | | | | | | | | | | | existing test is very slow and eats all the RAM of my testing VM, windows apparently does not have sparse memory. | ||||
| | * | TST: increase test time to avoid negative times on UTC conversion | Julian Taylor | 2014-03-25 | 1 | -1/+1 |
| |/ | | | | | fixes the test on windows where mingw _mktemp64 will return an error instead of a negative time. | ||||
| * | Merge pull request #4540 from juliantaylor/backports | Charles Harris | 2014-03-23 | 5 | -2/+18 |
| |\ | | | | | Backports for 1.8 | ||||
| | * | DOC: add size 1 object reduction to release notes | Julian Taylor | 2014-03-23 | 1 | -0/+1 |
| | | | |||||
| | * | BUG: nditer: Initialize buffer reduce pos | Sebastian Berg | 2014-03-23 | 3 | -2/+10 |
| | | | | | | | | | | | | | | | | | | | | | The FirstVisit function uses this, but when the reduction is over a single element it isn't considered a reduction. This is fine, however the reduce pos must still be initialized to 0 in that case. Also changes the check order so that it is not necessary to initialize the outerstrides as well. See also gh-4134, and gh-4535. | ||||
| | * | BUG: add missing gufunc failure return values and missing malloc fail check | Julian Taylor | 2014-03-23 | 1 | -0/+7 |
| |/ | |||||
| * | Merge pull request #4536 from juliantaylor/doc-revert | Julian Taylor | 2014-03-23 | 1 | -0/+0 |
| |\ | | | | | DOC: reset scipy-sphinx-theme back to master | ||||
| | * | DOC: reset scipy-sphinx-theme back to master | Julian Taylor | 2014-03-23 | 1 | -0/+0 |
| |/ | | | | was probably accidentally reverted in 06f96948ff0a1f6ceb | ||||
| * | REL: set version to 1.8.1-rc2-dev for distutils and 1.8.1 for Bento. | Ralf Gommers | 2014-03-23 | 3 | -3/+3 |
| | | | | | | Bento should ideally be looking inside setup.py for the version number, but that for later. | ||||
| * | Merge pull request #4534 from charris/backport-1.8-gh-4533 | Charles Harris | 2014-03-22 | 3 | -1/+5 |
| |\ | | | | | Backport 1.8 gh 4533 | ||||
| | * | DOC: Update 1.8.1 release notes for gh-4533 backport. | Charles Harris | 2014-03-22 | 1 | -0/+1 |
| | | | |||||
| | * | BUG: fix broken operand initialization for einsum. | Jez Ng | 2014-03-22 | 2 | -1/+4 |
| |/ | | | | Closes #4528. | ||||
| * | Merge pull request #4525 from charris/backport-1.8-gh-4518 | Julian Taylor | 2014-03-20 | 3 | -1/+11 |
| |\ | | | | | Backport 1.8 gh 4518 | ||||
| | * | DOC: Document fix for gh-4486. | Charles Harris | 2014-03-20 | 1 | -0/+1 |
| | | | |||||
| | * | BUG: catch overflow of nominator in datetime conversions | Julian Taylor | 2014-03-20 | 2 | -1/+10 |
| |/ | | | | closes gh-4486 | ||||
| * | Merge pull request #4517 from juliantaylor/bytebounds-1.8 | Charles Harris | 2014-03-19 | 3 | -4/+15 |
| |\ | | | | | backport bytebounds fix to 1.8 | ||||
| | * | DOC: add byte_bounds issue to release notes | Julian Taylor | 2014-03-19 | 1 | -1/+2 |
| | | | |||||
| | * | TST: add unittest for byte_bounds | Olivier Grisel | 2014-03-19 | 1 | -0/+9 |
| | | | |||||
| | * | FIX: missing asarray import in numpy.libs.utils | Olivier Grisel | 2014-03-19 | 1 | -1/+1 |
| | | | |||||
| | * | BUG: fix ValueError for byte_bounds() on datetime array | mosessky | 2014-03-19 | 1 | -2/+3 |
| | | | | | | | | | close gh-4354 | ||||
| * | | Merge pull request #4513 from charris/backport-1.8-gh-4387 | Charles Harris | 2014-03-18 | 4 | -9/+16 |
| |\ \ | |/ | | | ENH: Make output of get_atlas_info conditional on system_info.verbosity | ||||
| | * | DOC: Document new ability to silence get_atlas_info in release notes. | Charles Harris | 2014-03-18 | 1 | -0/+7 |
| | | | |||||
| | * | ENH: Make output of get_atlas_info conditional on system_info.verbosity | Arnaud Bergeron | 2014-03-18 | 3 | -9/+9 |
| |/ | |||||
| * | Merge pull request #4511 from juliantaylor/quant-1.8 | Julian Taylor | 2014-03-18 | 2 | -6/+42 |
| |\ | | | | | backport gh-4503 to 1.8 | ||||
| | * | BUG: Fix linspace for use with physical quantities | Robert Pröpper | 2014-03-18 | 2 | -6/+42 |
| |/ | | | | The fix for issue 3504 led to errors when using linspace with the quantities package. Multiplying with 1 instead of adding 0 prevents issues when using physical quantities. | ||||
| * | Merge pull request #4510 from charris/Backport-1.8-gh-4456 | Charles Harris | 2014-03-17 | 1 | -0/+1 |
| |\ | | | | | Backport-1.8-gh-4456. | ||||
