summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-03-15fixed order of notes and examplesJonas Rauber1-8/+8
2018-03-15Update add_newdocs.pyJonas Rauber1-3/+9
2018-03-15fixes #10747Jonas Rauber1-2/+4
2018-03-15DOC: Fix typo in warning messagehvy1-1/+1
2018-03-14Merge pull request #10743 from fred-lefebvre/masterCharles Harris8-21/+61
MAINT: Import abstract classes from collections.abc
2018-03-14TST: Import abstract classes from collections.abcFrederick Lefebvre8-21/+61
Abstract collection classes accessed from the collections module have been deprecated since Python 3.3. They should be accessed through collections.abc. When run with Python 3.7, the deprecation warning cause multiple tests to fail.
2018-03-13Merge pull request #10718 from AaronCritchley/tst-fixing-float16-eqCharles Harris3-2/+36
BUG: Fix bug in asserting near equality of float16 arrays.
2018-03-13MAINT: Increase range in float16 almost equal nulp test.Charles Harris1-2/+4
2018-03-13Merge pull request #10732 from eric-wieser/chained-setuptools-commandCharles Harris1-9/+16
BUG: Fix `setup.py build install egg_info`, which did not previously build
2018-03-13Merge pull request #10734 from charris/post-1.14.2-updatev1.14.2Charles Harris3-0/+63
DOC: Post 1.14.2 release update.
2018-03-12Fix low-hanging Pypy compatibility issues (#10737)Pauli Virtanen10-31/+24
* TST: skip refcount-requiring tests if sys.refcount is missing * ENH: io: add refcheck=False to a safe .resize() call The array is allocated immediately above, and the resize always succeeds so it is not necessary to check it. Fixes Pypy compatibility. * TST: remove unused code * TST: factor skipif(not HAS_REFCOUNT) into a separate decorator
2018-03-12DOC: Post 1.14.2 release update.Charles Harris3-0/+63
* Add 1.14.2 changelog * Add 1.14.2 release notes
2018-03-12BUG: Fix `setup.py build install egg_info`, which did not previously buildEric Wieser1-9/+16
Fixes #10646 The original intent was to disable builds when _only_ the egg_info target is requested, not whenever it is one of the targets.
2018-03-11Merge pull request #10730 from MSeifert04/doc-fix-typoCharles Harris1-1/+1
DOC: Fix minor typo in how-to-document.
2018-03-11DOC: Fix minor typo in how-to-document.MSeifert041-1/+1
The accidental trailing underscore made it render as unresolved link so it had an underline in the output. None of the other listed functions had such a trailing underscore so it was removed there as well. [skip ci]
2018-03-10MAINT: Misc small fixes. (#10722)Charles Harris2-32/+32
* MAINT: Replace print statements for Python3. Updates tools/swig/test/testSuperTensor.py. * MAINT: Fix deprecated escaped characters for python 3.6+. Update numpy/linalg/lapack_lite/clapack_scrub.py.
2018-03-10Merge pull request #10716 from ahaldane/fix_dragon4_fractional_cutoffCharles Harris2-5/+13
BUG: dragon4 fractional output mode adds too many trailing zeros
2018-03-10Merge pull request #10720 from WarrenWeckesser/fix-gh-10712Charles Harris2-3/+57
BUG: distutils: Remove named templates from the processed output (fix gh-10712)
2018-03-10MAINT: Remove obsolete comment.Warren Weckesser1-1/+1
2018-03-10BUG: distutils: Remove named templates from the output.Warren Weckesser2-2/+56
The code now does not copy the named templates found outside a function or subroutine to the output file. Fixes gh-10712.
2018-03-10Merge pull request #10719 from guoci/numpy_constants_docCharles Harris3-2/+31
DOC: add documentation for constants
2018-03-10declare source code encodingguoci1-0/+1
2018-03-10add documentation for constantsguoci3-2/+30
2018-03-10Merge pull request #10715 from siavashserver/fix-guardCharles Harris1-2/+2
MAINT: Fixed C++ guard in f2py test.
2018-03-10TST: Fixing bug in assert near equality of float16 arrays (#10697)Aaron Critchley3-2/+34
2018-03-09BUG: dragon4 fractional output mode adds too many trailing zerosAllan Haldane2-5/+13
Fixes #10713
2018-03-09MAINT: Fixed C++ guard in f2py test.siavashserver1-2/+2
2018-03-08Merge pull request #10689 from freakboy3742/iOS-compatCharles Harris5-11/+34
BLD: Add configuration changes to allow cross platform builds for iOS.
2018-03-09DOC: Added release note for iOS build changes.Russell Keith-Magee1-1/+13
2018-03-08Merge pull request #10711 from charris/fix-hard-tabsCharles Harris11-120/+121
MAINT: Hard tab and whitespace cleanup.
2018-03-08MAINT: Hard tab and whitespace cleanup.Charles Harris11-120/+121
2018-03-08Merge pull request #10698 from ahaldane/fix_0d_object_subclass_againCharles Harris2-13/+47
BUG: Further back-compat fix for subclassed array repr (forward port)
2018-03-08Merge pull request #10708 from bobeldering/f2py-multilineCharles Harris2-2/+56
BUG: fix problem with modifing pyf lines containing ';' in f2py
2018-03-08Merge pull request #10694 from lumbric/patch-2Charles Harris1-1/+1
DOC: Improve docstring of memmap
2018-03-08Merge pull request #10710 from louispotok/select-error-messageCharles Harris1-1/+1
BUG: fix error message in numpy.select
2018-03-08ENH: Allow dtype field names to be unicode in Python2 (#10672)Chris Billington3-6/+33
ENH: Allow dtype field names to be ascii encoded unicode in Python2
2018-03-08Merge pull request #10703 from njsmith/nep-nep-nepCharles Harris16-20/+33
NEP process updates
2018-03-08BUG: fix error message in numpy.selectLouis Potok1-1/+1
2018-03-08TST: test handling ';' in multiline and enhancement lines, numpy.f2pyBob Eldering1-0/+53
Regression tests for bug discussed in pull request #10676. Lines matching the multiline or f2py enhancement pattern should not be split by ';'.
2018-03-08BUG: fix for splitting a multiline or enhancement by ';' in numpy.f2py.Bob Eldering1-2/+3
The variable line was assigned to before checking whether it contains a multiline or f2py enhancement pattern. In these cases the line should not be split by ';'. See pull request #10676.
2018-03-08Write down a formal procedure for declaring a NEP "accepted"Nathaniel J. Smith1-2/+8
2018-03-08Assign numbers to all existing NEPsNathaniel J. Smith15-18/+25
2018-03-06Merge pull request #10699 from ahaldane/fixup_gradient_docstringCharles Harris1-3/+3
DOC: Grammar of np.gradient docstring
2018-03-06DOC: Grammar of np.gradient docstringAllan Haldane1-3/+3
[ci-skip]
2018-03-05BUG: Further back-compat fix for subclassed array reprAllan Haldane2-13/+47
Fixes #10663
2018-03-05DOC: Improve docstring of memmaplumbric1-1/+1
See also 8a38f64.
2018-03-04Merge pull request #10691 from shoyer/mixins-version-adddedCharles Harris1-0/+2
DOC: add versionadded for NDArrayOperatorsMixin.
2018-03-04DOC: add versionadded for NDArrayOperatorsMixin.Stephan Hoyer1-0/+2
2018-03-04MAINT: Covariance must be symmetric as well as positive-semidefinite. (#10669)Oleg Zabluda1-7/+8
* [BUG] add "symmetric" to "positive-semidefinite" * Break line, fix comments * break long line
2018-03-04BUG: F2py mishandles quoted control characters (#10676)bobeldering2-37/+79
* BUG: improve parsing of quoted control characters in numpy.f2py. See #10634. Fixes a couple of cases where quoted control characters are parsed as if they are unquoted. The control characters considered are "()!;". * TST: quoted characters parsing by numpy.f2py. Basic test of parsing quoted Fortran control characters. See #10634. * BUG: add missing space character when reconstructing fortran line. The missing space caused a line starting with "!f2py" to be considered a continuation line.