| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge pull request #289644 from mweinelt/pandas-2.2.0•••pandas, numpy, numba, llvmlite updates | Martin Weinelt | 2024-02-18 | 1 | -5/+2 |
| |\ |
|
| | * | python311Packages.numpy: 1.26.2 -> 1.26.4•••https://github.com/numpy/numpy/releases/tag/v1.26.4
| Martin Weinelt | 2024-02-18 | 1 | -5/+2 |
| * | | python3Packages.numpy: disable test_dispatcher on x86_64 darwin | Robert Scott | 2024-02-10 | 1 | -0/+3 |
| |/ |
|
| * | openblas: update URLs, upstream repo was moved | Nicolas Benes | 2024-01-30 | 1 | -1/+1 |
| * | python312Packages.numpy: apply patch to remove distutils usage•••This fixes the build on Python 3.12.
| Martin Weinelt | 2023-12-20 | 2 | -0/+74 |
| * | python3Packages.numpy: 1.26.1 -> 1.26.2•••https://github.com/numpy/numpy/releases/tag/v1.26.2
| Martin Weinelt | 2023-12-20 | 1 | -2/+2 |
| * | python3Packages.numpy: fix cross compilation•••Add mesonEmulatorHook, along with a small hack to make it function
properly with meson-python.
| Thomas Watson | 2023-11-19 | 1 | -0/+8 |
| * | python3Packages.numpy: remove reference to build Python•••The full path of the build Python intepreter gets stored in
numpy/__config__.py and thus the built wheel. Leaving the reference is
annoying for regular builds but fatal for cross builds.
| Thomas Watson | 2023-11-19 | 1 | -0/+4 |
| * | python311Packages.numpy: 1.25.1 -> 1.26.1•••https://github.com/numpy/numpy/releases/tag/v1.26.0
https://github.com/numpy/numpy/releases/tag/v1.26.1
Migrates the build system to meson-python, obsoleting all NPY_*
environment variables used in the build process.
| Martin Weinelt | 2023-11-10 | 1 | -14/+40 |
| * | Merge master into staging-next | github-actions[bot] | 2023-10-14 | 1 | -1/+2 |
| |\ |
|
| | * | python3Packages.numpy: bump supported Python range•••NumPy 1.25.1 only supports Python 3.9-3.11
<https://github.com/numpy/numpy/releases/tag/v1.25.1>.
Closes #256939.
| Victor Engmark | 2023-10-09 | 1 | -1/+2 |
| * | | python3Packages.numpy: 1.25.1 -> 1.25.2•••https://github.com/numpy/numpy/releases/tag/v1.25.2
| Martin Weinelt | 2023-09-27 | 1 | -10/+2 |
| * | | python3Packages.numpy: use pytestCheckHook & disable failing tests | misuzu | 2023-08-31 | 1 | -8/+30 |
| |/ |
|
| * | python3.pkgs.numpy: 1.24.2 -> 1.25.1•••Fixes #240510 .
| Doron Behar | 2023-07-28 | 1 | -9/+2 |
| * | python3Packages.numpy: apply patches unconditionally•••The test-skipping patch is conditionalized on python layer.
I moved the conditional patch after the unconditional ones, too.
| Vladimír Čunát | 2023-07-20 | 1 | -11/+9 |
| * | Revert "python3Packages.numpy: temporarily avoid rebuild on !isClang"•••This reverts commit 7ea07d2c0c919cb3b49de10e9134d15a449a8ba4.
| Vladimír Čunát | 2023-07-20 | 1 | -5/+5 |
| * | python3Packages.numpy: temporarily avoid rebuild on !isClang•••Ugly but fortunately I'll revert it immediately.
| Vladimír Čunát | 2023-07-20 | 1 | -5/+5 |
| * | python3Packages.numpy: fix test failure on x86_64-darwin under Rosetta 2•••The `atanhl` function is broken under Rosetta 2 with 80-bit long
doubles, which numpy uses to implement long double complex numbers. This
results in a test failure. Attempts were made to change the
implementation of things, but that just changed the breakage.
The following Swift program demonstrates the problem.
import Foundation
import Numerics
let x = Float80(1.00000000e-20)
let z = Complex(x)
print("X: \(x), Z: \(z)")
let x_atanh = Float80.atanh(x)
let z_atanh = Complex.atanh(z)
print("atanh:")
print("X: \(x_atanh), Z: \(z_atanh)")
let d = abs(x_atanh / z_atanh.real - 1)
print("d: \(d)")
On x86_64-darwin hardware, it prints the following:
X: 1e-20, Z: (1e-20, 0.0)
atanh:
X: 1e-20, Z: (1e-20, 0.0)
d: 0.0
On aarch64-darwin under Rosetta 2, it prints the following:
X: 1e-20, Z: (1e-20, 0.0)
atanh:
X: 1e-20, Z: (-1.0237493319595677839e-40, 0.0)
d: 9.7680161420558978584e+19
The latter is obviously incorrect. FB12656897 was submitted to Apple,
but even if this is fixed eventually, this derivation needs to build for
users (and Hydra) who aren’t on the latest version.
| Randy Eckenrode | 2023-07-19 | 2 | -0/+29 |
| * | python3Packages.numpy: fix test failure on aarch64-darwin | Randy Eckenrode | 2023-07-19 | 1 | -0/+8 |
| * | python3Packages.numpy: fix build with clang 16•••* Fix an invalid function pointer conversion; and
* Disable strict overflow hardening due to an unused argument warning
that is promoted to -Werror.
| Randy Eckenrode | 2023-07-19 | 1 | -0/+13 |
| * | python310Packages.numpy: run tests correct so that the build can fail | Sandro Jäckel | 2023-07-06 | 1 | -3/+11 |
| * | Merge pull request #233447 from SuperSandro2000/hypothesis-doc-pasthru•••python310Packages.hypothesis: move documentation to passthru to reduce dependencies | Sandro | 2023-06-07 | 1 | -2/+1 |
| |\ |
|
| | * | treewide: remove removed hypothesis enableDocumentation option | Sandro Jäckel | 2023-05-23 | 1 | -2/+1 |
| * | | python310Packages.numpy: remove unused inputs | Sandro Jäckel | 2023-05-22 | 1 | -1/+0 |
| |/ |
|
| * | python3Packages.numpy: 1.23.5 -> 1.24.2 | Martin Weinelt | 2023-03-03 | 1 | -2/+2 |
| * | Merge branch 'nativeCheckInputs' into staging-nativeCheckInputs | Guillaume Girol | 2023-01-21 | 1 | -1/+1 |
| |\ |
|
| | * | treewide: switch to nativeCheckInputs•••checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
| Guillaume Girol | 2023-01-21 | 1 | -1/+1 |
| * | | python3.pkgs.hypothesis: build offline documentation | Dmitry Bogatov | 2023-01-15 | 1 | -1/+2 |
| |/ |
|
| * | python3Packages.numpy: 1.23.3 -> 1.23.5 | Martin Weinelt | 2023-01-05 | 1 | -2/+2 |
| * | python3Packages.numpy: revert to setuptools•••Somehow the pyproject configuration fails.
| Frederik Rietdijk | 2022-09-19 | 1 | -8/+2 |
| * | python3Packages.numpy: 1.23.1 -> 1.23.3•••https://github.com/numpy/numpy/releases/tag/v1.23.2
https://github.com/numpy/numpy/releases/tag/v1.23.3
| Martin Weinelt | 2022-09-18 | 1 | -2/+2 |
| * | python3Packages.numpy: fix format and folder to run tests in | Frederik Rietdijk | 2022-09-15 | 1 | -2/+2 |
| * | python3Packages.numpy: 1.21.6 -> 1.23.1 | Martin Weinelt | 2022-07-21 | 1 | -3/+5 |
| * | python3Packages.numpy: 1.21.5 -> 1.21.6•••https://github.com/numpy/numpy/releases/tag/v1.21.6
| Martin Weinelt | 2022-06-06 | 1 | -2/+2 |
| * | python3Packages.numpy: 1.21.4 -> 1.21.5 | Martin Weinelt | 2022-01-23 | 1 | -2/+7 |
| * | python2.pkgs: move expressions into python2-modules/ folder•••Another step in further separating python2 from python3.
| Frederik Rietdijk | 2022-01-16 | 2 | -129/+0 |
| * | python3Packages.numpy: 1.21.2 -> 1.21.4 | Jonathan Ringer | 2021-11-30 | 1 | -2/+2 |
| * | python3Packages.numpy: remove unneeded patch•••Patch was already merged upstream, no longer relevant
| Jonathan Ringer | 2021-11-22 | 1 | -7/+1 |
| * | Merge pull request #133446 from veprbl/pr/numpy_werror_fix | Sandro | 2021-11-22 | 1 | -5/+8 |
| |\ |
|
| | * | python3Packages.numpy: proper fix for Werror misdetection bug | Dmitry Kalinkin | 2021-08-10 | 1 | -5/+8 |
| * | | pkgs.development.python-modules: remove unused args | Markus S. Wamser | 2021-11-12 | 1 | -1/+0 |
| * | | python3Packages.numpy: 1.21.1 -> 1.21.2 | Martin Weinelt | 2021-09-05 | 1 | -2/+2 |
| |/ |
|
| * | python3Packages.numpy: workaround flakey compiler feature detection | Dmitry Kalinkin | 2021-08-06 | 1 | -0/+4 |
| * | python3Packages.numpy: 1.20.3 -> 1.21.1 | Martin Weinelt | 2021-08-05 | 1 | -2/+2 |
| * | python3Package.numpy: enable test on pypy•••The bug in question was closed in 2019 and I saw no issue building
pypyPackages.numpy.
| Martin Weinelt | 2021-06-22 | 1 | -2/+0 |
| * | python3Packages.numpy: 1.20.2 -> 1.20.3 | Martin Weinelt | 2021-06-22 | 1 | -2/+2 |
| * | python3Packages.numpy: 1.20.1 -> 1.20.2•••https://numpy.org/devdocs/release/1.20.2-notes.html
| Martin Weinelt | 2021-04-07 | 1 | -2/+2 |
| * | python3Packages.numpy: 1.19.4 -> 1.20.1 | Robert T. McGibbon | 2021-02-26 | 1 | -16/+11 |
| * | python3Packages.numpy: fix compatibility with newer pytest | Frederik Rietdijk | 2020-12-01 | 1 | -1/+8 |
| * | python3Packages.numpy: use pytest_5 | Jonathan Ringer | 2020-12-01 | 1 | -3/+6 |