summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/numpy
AgeCommit message (Collapse)Author
33 hourspython3Packages.numpy_1: remove superfluous pythonOlderGutyina Gergő
2025-12-27python314Packages.numpy: don't assert RecursionError in monster dtype testqbisi
2025-11-17python3Packages.numpy: 2.3.4 -> 2.3.5Doron Behar
Diff: https://github.com/numpy/numpy/compare/v2.3.4...v2.3.5 Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.5
2025-10-16python3Packages.numpy: 2.3.3 -> 2.3.4Doron Behar
Diff: https://github.com/numpy/numpy/compare/v2.3.3...v2.3.4 Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.4
2025-10-11python3Packages.numpy: Disable borked test on ppc64 (#450059)Doron Behar
2025-10-10python3Packages.numpy: Disable borked test on ppc64OPNA2608
2025-09-24python3Packages.numpy: use fetchFromGitHubRobert Schütz
2025-09-14python313Packages.numpy: 2.3.2 -> 2.3.3Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.3
2025-08-19python312Packages.numpy_1: unpin CythonRobert Schütz
2025-07-25python313Packages.numpy: 2.3.1 -> 2.3.2Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.2
2025-07-24Merge branch 'master' into staging-nextWolfgang Walther
2025-07-24treewide: run nixfmt 1.0.0Wolfgang Walther
2025-07-17Merge master into staging-nextnixpkgs-ci[bot]
2025-07-17python310Packages.numpy: disableRobert Schütz
2025-07-15treewide: modernize Python package pytest flagsYueh-Shun Li
Use `(enabled|disabled)(TestPaths|TestMarks|Tests)` and `pytestFlags` instead of the `__structuredAttrs`-incompatible `pytestFlagsArray`.
2025-06-23python312Packages.numpy: 2.3.0 -> 2.3.1Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.1
2025-06-08python312Packages.numpy: 2.2.6 -> 2.3.0Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.3.0
2025-05-18python312Packages.numpy: 2.2.5 -> 2.2.6Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.2.6
2025-04-20python312Packages.numpy: 2.2.4 -> 2.2.5Doron Behar
2025-04-16python312Packages.numpy_2: ignore test failure when gcc.arch is setMitchell Pleune
Upstream bug at https://github.com/numpy/numpy/issues/27460 likely just needs it's error band increased. A similar bug was fixed in Scipy https://github.com/scipy/scipy/issues/22495 (closed) also.
2025-03-16python312Packages.numpy: 2.2.3 -> 2.2.4Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.2.4
2025-02-15python312Packages.numpy: 2.2.2 -> 2.2.3Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.2.3
2025-01-19python312Packages.numpy: 2.2.0 -> 2.2.2Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.2.2
2024-12-27python3Packages.meson-python: honor mesonFlagsArrayColin
2024-12-08python312Packages.numpy_2: 2.1.3 -> 2.2.0Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.2.0
2024-11-25treewide: improve prepending and appending derivation arguments in bash codeWolfgang Walther
Those would be problematic with __structuredAttrs turned on, because they'd turn those nice bash arrays back into strings - and potentially lose some of the values on the way.
2024-11-18python313Packages.numpy: 2.1.2 -> 2.1.3Martin Weinelt
https://github.com/numpy/numpy/releases/tag/v2.1.3
2024-10-13python312Packages.numpy_2: disable failing test with setuptools 74.0Martin Weinelt
2024-10-13python312Packages.numpy_1: disable failing testMartin Weinelt
The distutils version vendored in setuptools 74.0 and later does not have the msvccompiler class any longer.
2024-10-05python312Packages.numpy_2: 2.1.1 -> 2.1.2Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.1.2
2024-09-25treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`Artturin
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
2024-09-09python312Packages.numpy_2: add a coreIncludeDir passthru attributeDoron Behar
2024-09-09python312Packages.numpy_1: add a coreIncludeDir passthru attributeDoron Behar
2024-09-05python312Packages.numpy_2: 2.1.0 -> 2.1.1Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.1.1
2024-09-05python312Packages.numpy_2: add doronbehar to maintainersDoron Behar
2024-08-21python312Packages.numpy_2: 2.0.1 -> 2.1.0Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.1.0
2024-07-22python312Packages.numpy_2: 2.0.0 -> 2.0.1Doron Behar
Changelog: https://github.com/numpy/numpy/releases/tag/v2.0.1
2024-06-17python313Packages.ptyprocess: fix testsMartin Weinelt
Removes deprecated and removed unittest module functions.
2024-06-17python312Packages.numpy_2: init at 2.0.0Martin Weinelt
https://github.com/numpy/numpy/releases/tag/v2.0.0 Default for Python 3.13, since Numpy 1.26.x lacks support for it.
2024-05-22python3Packages: format with nixfmtMartin Weinelt
2024-05-06sage: Add as passthru.tests to critical dependenciesTom Hubrecht
2024-05-02Merge master into staging-nextgithub-actions[bot]
2024-05-02treewide: remove unreferenced patch files (#308127)Peder Bergebakken Sundt
Found with `fd \\.patch$ pkgs/ -x bash -c 'rg -F "{/}" pkgs/ -q || echo {}'`
2024-04-28Merge branch 'master' into staging-nextJan Tojnar
2024-04-28Removing FRidh as active maintainer of packagesFrederik Rietdijk
In the past I was very active with Python packaging. For several years now I was hardly around as maintainer, so it does not make sense I am listed as a maintainer for these makes. Looking back, I should have removed myself as maintainer already much longer ago. Anyway, better late than never. It's been a fun ride, and I do intend to occasionally contribute to Nixpkgs, but not in the same way it once was.
2024-04-22python311Packages.numpy: relax meson-python constraintMartin Weinelt
2024-03-27python312Packages.cython: 0.29.36 -> 3.0.9Martin Weinelt
Folds the cython_3 attribute into the primary cython attribute and migrates all packages from the versioned attribute. The old version will be provided through the cython_0 attribute in an effort to phase it out.
2024-03-19treewide: add meta.mainProgram to packages with a single binarystuebinm
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
2024-02-18Merge pull request #289644 from mweinelt/pandas-2.2.0Martin Weinelt
pandas, numpy, numba, llvmlite updates
2024-02-18python311Packages.numpy: 1.26.2 -> 1.26.4Martin Weinelt
https://github.com/numpy/numpy/releases/tag/v1.26.4