2018-05-14 08:36:17 by Adam Ciarcinski | Files touched by this commit (2) |
Log message:
py-numpy: Do not generate debug symbols
|
2018-05-02 06:42:25 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-numpy: updated to 1.14.3
NumPy 1.14.3:
This is a bugfix release for a few bugs reported following the 1.14.2 release:
- np.lib.recfunctions.fromrecords accepts a list-of-lists, until 1.15
- In python2, float types use the new print style when printing to a file
- style arg in "legacy" print mode now works for 0d arrays
|
2018-04-03 20:30:45 by Min Sik Kim | Files touched by this commit (2) |
Log message:
math/py-numpy: Disable openblas detection
This package should use math/blas.
|
2018-03-13 12:34:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-numpy: updated to 1.14.2
1.14.2:
This is a bugfix release for some bugs reported following the 1.14.1 release. \
The major
problems dealt with are as follows.
Residual bugs in the new array printing functionality.
Regression resulting in a relocation problem with shared library.
Improved PyPy compatibility.
|
2018-02-22 11:50:47 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-numpy: updated to 1.14.1
NumPy 1.14.1 Release Notes
This is a bugfix release for some problems reported following the 1.14.0 \
release. The major
problems fixed are the following.
Problems with the new array printing, particularly the printing of complex
values, Please report any additional problems that may turn up.
Problems with np.einsum due to the new optimized=True default. Some
fixes for optimization have been applied and optimize=False is now the
default.
The sort order in np.unique when axis=<some-number> will now always
be lexicographic in the subarray elements. In previous NumPy versions there
was an optimization that could result in sorting the subarrays as unsigned
byte strings.
The change in 1.14.0 that multi-field indexing of structured arrays returns a
view instead of a copy has been reverted but remains on track for NumPy 1.15.
Affected users should read the 1.14.1 Numpy User Guide section
"basics/structured arrays/accessing multiple fields" for advice on how to
manage this transition.
|
2018-01-10 09:31:24 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-numpy: updated to 1.14.0
NumPy 1.14.0 Release Notes
Numpy 1.14.0 is the result of seven months of work and contains a large number
of bug fixes and new features, along with several changes with potential
compatibility issues. The major change that users will notice are the
stylistic changes in the way numpy arrays and scalars are printed, a change
that will affect doctests. See below for details on how to preserve the
old style printing when needed.
A major decision affecting future development concerns the schedule for
dropping Python 2.7 support in the runup to 2020. The decision has been made to
support 2.7 for all releases made in 2018, with the last release being
designated a long term release with support for bug fixes extending through
2019. In 2019 support for 2.7 will be dropped in all new releases. More details
can be found in the relevant NEP_.
This release supports Python 2.7 and 3.4 - 3.6.
|
2017-10-05 10:21:27 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-numpy: update to 1.13.3
NumPy 1.13.3:
This is a bugfix release for some problems found since 1.13.1. The most
important fixes are for CVE-2017-12852 and temporary elision. Users of earlier
versions of 1.13 should upgrade.
|
2017-07-07 06:21:10 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
1.13.1:
Bug fixes.
|
2017-06-15 09:02:53 by Adam Ciarcinski | Files touched by this commit (5) |
Log message:
NumPy 1.13.0
Highlights
* Operations like a + b + c will reuse temporaries on some platforms,
resulting in less memory use and faster execution.
* Inplace operations check if inputs overlap outputs and create temporaries
to avoid problems.
* New __array_ufunc__ attribute provides improved ability for classes to
override default ufunc behavior.
* New np.block function for creating blocked arrays.
New functions
* New np.positive ufunc.
* New np.divmod ufunc provides more efficient divmod.
* New np.isnat ufunc tests for NaT special values.
* New np.heaviside ufunc computes the Heaviside function.
* New np.isin function, improves on in1d.
* New np.block function for creating blocked arrays.
* New PyArray_MapIterArrayCopyIfOverlap added to NumPy C-API.
|
2017-03-24 20:22:28 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message:
Check the version number part of the matched string and not the whole
string, otherwise the result is somewhat random. Bump revision again.
|