summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/numpy (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #289644 from mweinelt/pandas-2.2.0•••pandas, numpy, numba, llvmlite updatesMartin Weinelt2024-02-181-5/+2
|\
| * python311Packages.numpy: 1.26.2 -> 1.26.4•••https://github.com/numpy/numpy/releases/tag/v1.26.4 Martin Weinelt2024-02-181-5/+2
* | python3Packages.numpy: disable test_dispatcher on x86_64 darwinRobert Scott2024-02-101-0/+3
|/
* openblas: update URLs, upstream repo was movedNicolas Benes2024-01-301-1/+1
* python312Packages.numpy: apply patch to remove distutils usage•••This fixes the build on Python 3.12. Martin Weinelt2023-12-202-0/+74
* python3Packages.numpy: 1.26.1 -> 1.26.2•••https://github.com/numpy/numpy/releases/tag/v1.26.2 Martin Weinelt2023-12-201-2/+2
* python3Packages.numpy: fix cross compilation•••Add mesonEmulatorHook, along with a small hack to make it function properly with meson-python. Thomas Watson2023-11-191-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 Watson2023-11-191-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 Weinelt2023-11-101-14/+40
* Merge master into staging-nextgithub-actions[bot]2023-10-141-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 Engmark2023-10-091-1/+2
* | python3Packages.numpy: 1.25.1 -> 1.25.2•••https://github.com/numpy/numpy/releases/tag/v1.25.2 Martin Weinelt2023-09-271-10/+2
* | python3Packages.numpy: use pytestCheckHook & disable failing testsmisuzu2023-08-311-8/+30
|/
* python3.pkgs.numpy: 1.24.2 -> 1.25.1•••Fixes #240510 . Doron Behar2023-07-281-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át2023-07-201-11/+9
* Revert "python3Packages.numpy: temporarily avoid rebuild on !isClang"•••This reverts commit 7ea07d2c0c919cb3b49de10e9134d15a449a8ba4. Vladimír Čunát2023-07-201-5/+5
* python3Packages.numpy: temporarily avoid rebuild on !isClang•••Ugly but fortunately I'll revert it immediately. Vladimír Čunát2023-07-201-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 Eckenrode2023-07-192-0/+29
* python3Packages.numpy: fix test failure on aarch64-darwinRandy Eckenrode2023-07-191-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 Eckenrode2023-07-191-0/+13
* python310Packages.numpy: run tests correct so that the build can failSandro Jäckel2023-07-061-3/+11
* Merge pull request #233447 from SuperSandro2000/hypothesis-doc-pasthru•••python310Packages.hypothesis: move documentation to passthru to reduce dependenciesSandro2023-06-071-2/+1
|\
| * treewide: remove removed hypothesis enableDocumentation optionSandro Jäckel2023-05-231-2/+1
* | python310Packages.numpy: remove unused inputsSandro Jäckel2023-05-221-1/+0
|/
* python3Packages.numpy: 1.23.5 -> 1.24.2Martin Weinelt2023-03-031-2/+2
* Merge branch 'nativeCheckInputs' into staging-nativeCheckInputsGuillaume Girol2023-01-211-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 Girol2023-01-211-1/+1
* | python3.pkgs.hypothesis: build offline documentationDmitry Bogatov2023-01-151-1/+2
|/
* python3Packages.numpy: 1.23.3 -> 1.23.5Martin Weinelt2023-01-051-2/+2
* python3Packages.numpy: revert to setuptools•••Somehow the pyproject configuration fails. Frederik Rietdijk2022-09-191-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 Weinelt2022-09-181-2/+2
* python3Packages.numpy: fix format and folder to run tests inFrederik Rietdijk2022-09-151-2/+2
* python3Packages.numpy: 1.21.6 -> 1.23.1Martin Weinelt2022-07-211-3/+5
* python3Packages.numpy: 1.21.5 -> 1.21.6•••https://github.com/numpy/numpy/releases/tag/v1.21.6 Martin Weinelt2022-06-061-2/+2
* python3Packages.numpy: 1.21.4 -> 1.21.5Martin Weinelt2022-01-231-2/+7
* python2.pkgs: move expressions into python2-modules/ folder•••Another step in further separating python2 from python3. Frederik Rietdijk2022-01-162-129/+0
* python3Packages.numpy: 1.21.2 -> 1.21.4Jonathan Ringer2021-11-301-2/+2
* python3Packages.numpy: remove unneeded patch•••Patch was already merged upstream, no longer relevant Jonathan Ringer2021-11-221-7/+1
* Merge pull request #133446 from veprbl/pr/numpy_werror_fixSandro2021-11-221-5/+8
|\
| * python3Packages.numpy: proper fix for Werror misdetection bugDmitry Kalinkin2021-08-101-5/+8
* | pkgs.development.python-modules: remove unused argsMarkus S. Wamser2021-11-121-1/+0
* | python3Packages.numpy: 1.21.1 -> 1.21.2Martin Weinelt2021-09-051-2/+2
|/
* python3Packages.numpy: workaround flakey compiler feature detectionDmitry Kalinkin2021-08-061-0/+4
* python3Packages.numpy: 1.20.3 -> 1.21.1Martin Weinelt2021-08-051-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 Weinelt2021-06-221-2/+0
* python3Packages.numpy: 1.20.2 -> 1.20.3Martin Weinelt2021-06-221-2/+2
* python3Packages.numpy: 1.20.1 -> 1.20.2•••https://numpy.org/devdocs/release/1.20.2-notes.html Martin Weinelt2021-04-071-2/+2
* python3Packages.numpy: 1.19.4 -> 1.20.1Robert T. McGibbon2021-02-261-16/+11
* python3Packages.numpy: fix compatibility with newer pytestFrederik Rietdijk2020-12-011-1/+8
* python3Packages.numpy: use pytest_5Jonathan Ringer2020-12-011-3/+6