gh-2973 Fix `1` is printed during numpy.test()
gh-2983 BUG: gh-2969: Backport memory leak fix 80b3a34.
gh-3007 Backport gh-3006
gh-2984 Backport fix complex polynomial fit
gh-2982 BUG: Make nansum work with booleans.
gh-2985 Backport large sort fixes
gh-3039 Backport object take
gh-3105 Backport nditer fix op axes initialization
gh-3108 BUG: npy-pkg-config ini files were missing after Bento build.
gh-3124 BUG: PyArray_LexSort allocates too much temporary memory.
gh-3131 BUG: Exported f2py_size symbol prevents linking multiple f2py
modules.
gh-3117 Backport gh-2992
gh-3135 DOC: Add mention of PyArray_SetBaseObject stealing a reference
gh-3134 DOC: Fix typo in fft docs (the indexing variable is 'm', not 'n').
gh-3136 Backport 3128
changes: any new features, performance improvements and bug fixes,
Some highlights are:
-Re-introduction of datetime dtype support to deal with dates in arrays.
-A new 16-bit floating point type.
-A new iterator, which improves performance of many functions.
From Wen Heping in PR pkg/43204.
This minor release removes datetime support, which fixes the binary
incompatibility issues with SciPy and other packages. It also includes several
bug fixes. No new features are introduced.
Bugs fixed
----------
- #1336: Fix for 1299 exposes Bus error on Sparc
- #1379: CPU ID not set correctly on PARISC
- #1388: frombuffer calls PyErr_Format without throwing an error
- log1p
- kaiser for M=1
- paver execution on Windows 7 for Python 2.6
- several fixes to Chebyshev and Polynomial
changes:
- Faster import time
- Extended array wrapping mechanism for ufuncs
- New Neighborhood iterator (C-level only)
- C99-like complex functions in npymath, and a lot of portability
fixes for basic floating point math functions
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
NumPy is a general-purpose array-processing package designed to
efficiently manipulate large multi-dimensional arrays of arbitrary
records without sacrificing too much speed for small multi-dimensional
arrays. NumPy is built on the Numeric code base and adds features
introduced by numarray as well as an extended C-API and the ability to
create arrays of arbitrary type.
There are also basic facilities for discrete fourier transform,
basic linear algebra and random number generation.
Pkgsrc issue: if the package build happens to find a fortran it prefers
over the one pkgsrc is using it will try to use it and the wrong thing
will happen.