summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Revert "Merge pull request #6354 from mingwpy/mingwpy"Charles Harris2015-10-206-41/+36
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 cda64938eb150b1af6677db4754da3be5fd7e483, reversing changes made to 8cb3ec6ab804f594daf553e53e7cf7478656bebd.
* | | | Merge pull request #6535 from alaindomissy/DOC_typo_in_arrays.interface.rst_6516Jaime2015-10-201-1/+1
|\ \ \ \ | |/ / / |/| | | DOC: typo in arrays.interface.rst #6516
| * | | DOC: typo in arrays.interface.rst #6516Alain2015-10-201-1/+1
|/ / /
* | | Merge pull request #6531 from yil387/fixed_typoJaime2015-10-191-8/+8
|\ \ \ | | | | | | | | DOC: fixed #6525
| * | | DOC: fixed #6525Yifan Li2015-10-191-8/+8
|/ / /
* | | Merge pull request #6529 from niccalle/fix_typoJaime2015-10-191-1/+1
|\ \ \ | | | | | | | | DOC: Fixed a typo at line 289 at c-api.array.rst
| * | | DOC: Fixed a typo at line 289 at c-api.array.rstNicolas Calle2015-10-191-1/+1
| |/ / | | | | | | | | | Fixes #6521
* | | Merge pull request #6528 from jaimefrio/fix_typoJaime2015-10-191-3/+3
|\ \ \ | |/ / |/| | DOC: fixed typo in arrays.classes.rst
| * | DOC: fixed typo in arrays.classes.rstJaime Fernandez2015-10-191-3/+3
| | |
* | | Merge pull request #6501 from rgommers/doc-makefileCharles Harris2015-10-193-27/+45
|\ \ \ | | | | | | | | REL: add "make upload" command for built docs, update "make dist".
| * | | DOC: update HOWTO_BUILD_DOCS and HOWTO_RELEASE for release doc builds.Ralf Gommers2015-10-192-25/+26
| | | | | | | | | | | | | | | | [ci skip]
| * | | REL: add "make upload" command for built docs, update "make dist".Ralf Gommers2015-10-181-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes to "make dist" for building docs: - remove .chm related line, we don't distribute those on docs.scipy.org - only include needed pdf files in dist.tar.gz [ci skip]
* | | | Merge pull request #6208 from ahaldane/fast_field_subscriptCharles Harris2015-10-1810-208/+398
|\ \ \ \ | | | | | | | | | | MAINT: Speedup field access by removing unneeded safety checks
| * | | | PERF: add 0d structured indexing benchmarkPauli Virtanen2015-10-181-0/+23
| | | | |
| * | | | MAINT: Speedup field access by removing unneeded safety checks (3/3)Allan Haldane2015-10-184-21/+55
| | | | | | | | | | | | | | | | | | | | | | | | | Skip safety-checks in views as long as neither old or new dtypes of view may have objects.
| * | | | MAINT: Speedup field access by removing unneeded safety checks (2/3)Allan Haldane2015-10-182-55/+66
| | | | | | | | | | | | | | | | | | | | | | | | | Bypass unneeded "view" safety checks in voidtype_ subscript/assignment methods, by falling back to ndarray methods which skip the checks.
| * | | | MAINT: Speedup field access by removing unneeded safety checks (1/3)Allan Haldane2015-10-185-132/+254
| | | | | | | | | | | | | | | | | | | | | | | | | Bypass unneeded "view" safety-checks in `array_subscript` and `array_assign_subscript`, by avoiding use of `PyArray_View`.
* | | | | Merge pull request #6499 from charris/update-1.10.0-notesNathaniel J. Smith2015-10-181-0/+10
|\ \ \ \ \ | |/ / / / |/| | | | DOC: Mention that default casting for inplace operations has changed.
| * | | | DOC: Mention that default casting for inplace operations has changed.Charles Harris2015-10-181-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mention in the compatibility section that default casting has changed from 'unsafe' to 'same_kind' for inplace operations. Closes #6498.
* | | | | Merge pull request #6500 from ahaldane/recarray_view_fixCharles Harris2015-10-182-11/+42
|\ \ \ \ \ | |_|/ / / |/| | | | BUG: recarrays viewed as subarrays don't convert to np.record type
| * | | | BUG: recarrays viewed as subarrays don't convert to np.record typeAllan Haldane2015-10-172-11/+42
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Record array views were updated in #5943 to return np.record dtype where possible, but forgot about the case of sub-arrays. That's fixed here, so accessing subarray fields by attribute or index works sensibly, as well as viewing a record array as a subarray dtype, and printing subarrays. This also happens to fix #6459, since it affects the same lines. Fixes #6497 #6459
* | | | Merge pull request #5773 from ml31415/pytest_traceback_hidePauli Virtanen2015-10-171-0/+15
|\ \ \ \ | |/ / / |/| | | ENH: Hide testing helper tracebacks when using them with pytest
| * | | PEP8 applied to commentsMichael Löffler2015-05-141-15/+15
| | | |
| * | | Comments addedMichael Löffler2015-04-201-15/+15
| | | |
| * | | pytest traceback hide markers set for testing helpersMichael Löffler2015-04-191-0/+15
| | | |
* | | | Merge pull request #6488 from charris/cleanup-6306Charles Harris2015-10-162-15/+13
|\ \ \ \ | | | | | | | | | | Cleanup 6306: BUG: allow extension of common blocks in numpy.f2py
| * | | | MAINT: Spellcheck doc/source/f2py/signature-file.rst.Charles Harris2015-10-161-5/+5
| | | | |
| * | | | BUG: allow extension of common blocks in numpy.f2pyAlexander Heger2015-10-162-11/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Lack of this feature resulted in the generation of incorrect *.pyf files. For example, the pyf file created by: subroutine sub3 (some arguments) real a, b, c, d common /coeff/ a, b common /coeff/ c, d <do stuff> return end Should contain both common statements the declaration of all four variables a, b, c, and d. Closes #5876.
* | | | | Merge pull request #6487 from charris/cleanup-6307Charles Harris2015-10-161-3/+4
|\ \ \ \ \ | | | | | | | | | | | | Cleanup of 6307: BUG: Allow nested use of parameters for array dimensions in f2py.
| * | | | | BUG: Allow nested use of parameters for array dimensions in f2py.Alexander Heger2015-10-161-3/+4
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nested use of parameters in specifying dimensions caused problems. For example parameter (i=7) common buf(nvar*(nvar+1) * (n + 1)) This fix was suggested by Pearu on github. Closes #5877.
* | | | | Merge pull request #6481 from charris/foreport-gh-5765Charles Harris2015-10-161-2/+2
|\ \ \ \ \ | | | | | | | | | | | | LIBPATH with spaces is now supported Python 2.7+ and Win32
| * | | | | LIBPATH with spaces is now supported Python 2.7+ and Win32Gabi Davar2015-10-161-2/+2
| |/ / / /
* | | | | Merge pull request #6480 from samuelstjean/patch-1seberg2015-10-161-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Fixed a typo in np.inner doc
| * | | | | Fixed a typo in np.inner docSamuel St-Jean2015-10-161-1/+1
|/ / / / /
* | | | | Merge pull request #6478 from ChristopherHogan/intel_osxCharles Harris2015-10-151-2/+12
|\ \ \ \ \ | | | | | | | | | | | | BUG: Fix Intel compiler flags for OS X build
| * | | | | BUG: Fix Intel compiler flags for OS X buildChris Hogan2015-10-151-2/+12
|/ / / / /
* | | | | Merge pull request #6474 from rgommers/testmodeCharles Harris2015-10-154-99/+21
|\ \ \ \ \ | |/ / / / |/| | | | REL: update Paver script for sdist completeness and auto-switch test warnings
| * | | | TST: raise errors for dev versions and warnings for releases on test runs.Ralf Gommers2015-10-152-25/+13
| | | | | | | | | | | | | | | | | | | | | | | | | This approach is less error prone than switching from "develop" to "release" in maintenance branches by hand. See gh-6461 for details.
| * | | | REL: remove release.sh because it's not in use anymore.Ralf Gommers2015-10-141-74/+0
| | | | | | | | | | | | | | | | | | | | We're using numpy-vendor/fabfile.py instead.
| * | | | REL: update Paver file to ensure sdist contents are OK for releases.Ralf Gommers2015-10-141-0/+8
|/ / / /
* | | | Merge pull request #6472 from charris/update-travis-3.5-dev-to-3.5Ralf Gommers2015-10-141-1/+1
|\ \ \ \ | | | | | | | | | | MAINT: Use Python 3.5 instead of 3.5-dev for travis 3.5 testing.
| * | | | MAINT: Use Python 3.5 instead of 3.5-dev for travis 3.5 testing.Charles Harris2015-10-141-1/+1
| | | | | | | | | | | | | | | | | | | | Python 3.5 has been released, so update 3.5 testing version.
* | | | | Merge pull request #6460 from behrisch/minimize_os_environ_adaptionsCharles Harris2015-10-131-8/+9
|\ \ \ \ \ | | | | | | | | | | | | BUG: Replacing the os.environ.clear by less invasive procedure
| * | | | | Update __init__.pybehrisch2015-10-041-8/+9
| | | | | |
* | | | | | Merge pull request #6432 from jjhelmus/fix_ma_putahaldane2015-10-122-9/+25
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | BUG: ma.put expands nomask
| * | | | | BUG: ma.put expands nomaskJonathan Helmus2015-10-122-9/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously when put was used on a MaskedArray with nomask the mask would be incorrectly set to the mask of the values argument. closes #6425
* | | | | | Merge pull request #6451 from charris/release-notes-1.10.1Charles Harris2015-10-122-0/+42
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | DOC: Create 1.10.1 release notes.
| * | | | | DOC: Create 1.10.1 release notes.Charles Harris2015-10-122-0/+42
| | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | | Merge pull request #6449 from anntzer/fill-explicit-dtype-futurewarningCharles Harris2015-10-112-5/+7
|\ \ \ \ \ \ | |/ / / / / |/| | | | | DEP: Remove warning for `full` when dtype is set.
| * | | | | DEP: Remove warning for `full` when dtype is set.Antony Lee2015-10-112-5/+7
|/ / / / / | | | | | | | | | | | | | | | See @rkern's comment in #6382.