| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | python3Packages.astropy: 7.1.0 -> 7.1.1•••Diff: https://github.com/astropy/astropy/compare/v7.1.0...v7.1.1 Changelog: https://docs.astropy.org/en/v7.1.1/changelog.html | Robert Schütz | 2025-11-25 | 1 | -5/+8 |
| * | python3Packages.astropy: reduce test dependencies•••In particular I don't want it to use pytest-cov. Since pytest-astropy depends on that, we remove pytest-astropy and pick all dependencies of pytest-astropy that are actually required. | Robert Schütz | 2025-11-15 | 1 | -2/+9 |
| * | python3Packages.astropy: add optional dependency uncompresspy | Robert Schütz | 2025-11-15 | 1 | -0/+2 |
| * | python3Packages.astropy: 7.0.1 -> 7.1.0•••This commit was automatically generated using update-python-libraries. | Martin Weinelt | 2025-08-09 | 2 | -39/+2 |
| * | treewide: run nixfmt 1.0.0 | Wolfgang Walther | 2025-07-24 | 1 | -25/+26 |
| * | Merge staging-next into staging | nixpkgs-ci[bot] | 2025-06-15 | 2 | -1/+37 |
| |\ | |||||
| | * | python3Packages.astropy: fix tests by tweaked upstream patch•••https://hydra.nixos.org/build/300052658/nixlog/1/tail | Vladimír Čunát | 2025-06-15 | 2 | -1/+37 |
| * | | treewide: pytestFlagsArray -> pytestFlags and join flag and option argument•••This treewide change targets Python packages that specifies pytest flags with pytestFlagsArray, and whose flags cannot be consructed by other pytestCheckHook-honoured arguments. Use the __structuredAttrs-agnostic argument pytestFlags instead of the deprecated pytestFlagsArray. For flags with option arguments, join each flag and their option argument into a single command-line argument following POSIX Utility Argument Syntax[1] for easier overriding (remove/replace). Examples: * [ "-W" "ignore:message:WarningClass" ] -> [ "-Wignore:message:WarningClass" ] * [ "--reruns" "3" ] -> [ "--reruns=3" ] [1]: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html | Yueh-Shun Li | 2025-06-16 | 1 | -1/+1 |
| |/ | |||||
| * | python313Packages.astropy: drop conflicting patch | Martin Weinelt | 2025-04-04 | 1 | -6/+0 |
| * | python3Packages.astropy: 7.0.0 -> 7.0.1•••This commit was automatically generated using update-python-libraries. | Martin Weinelt | 2025-04-03 | 1 | -2/+2 |
| * | treewide: fix typos in comments•••Made with ```shell git restore . fd '\.nix$' pkgs/ --type f -j1 -x bash -xc "$(cat <<"EOF" typos --no-check-filenames --write-changes "$1" git diff --exit-code "$1" && exit #( git diff "$1" | grep -qE "^\+ +[^# ]") && git restore "$1" count1="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> ' | wc -l )" count2="$( bat --language nix --diff --style changes "$1" --theme "Monokai Extended" --color always | aha --no-header | grep -E '^<span style="color:olive;">~</span> (<span style="color:#f8f8f2;"> *</span>)?<span style="color:#75715e;">.*</span>$' | wc -l )" [[ $count1 -ne $count2 ]] && git restore "$1" EOF )" -- {} ``` and filtered with `GIT_DIFF_OPTS='--unified=15' git -c interactive.singleKey=true add --patch` I initially tried using the tree-sitter cli, python bindings and even ast-grep through various means, but this is what I ended up with. | Peder Bergebakken Sundt | 2025-02-24 | 1 | -1/+1 |
| * | python310Packages.astropy: disable | Doron Behar | 2025-01-22 | 1 | -1/+1 |
| * | python312Packages.astropy: move stdenv argument above | Doron Behar | 2025-01-22 | 1 | -1/+1 |
| * | python312Packages.astropy: Use 'ci' hypothesis-profile & reenable flaky tests | Doron Behar | 2025-01-22 | 1 | -25/+18 |
| * | python313Packages.astropy: fix tests in darwin sandbox•••__darwinAllowLocalNetworking = true; is required | Reno Dakota | 2024-12-20 | 1 | -0/+2 |
| * | python313Packages.astropy: fix clang build•••Parts of the build compile with -Werror and the build also passes in -fno-strict-overflow which generates an unused command line argument warning which causes the build to fail when -Werror is present. Add -Wno-error=unused-command-line-argument to ignore. | Reno Dakota | 2024-12-20 | 1 | -0/+4 |
| * | python312Packages.astropy: 6.1.4-> 7.0.0•••https://docs.astropy.org/en/stable/whatsnew/7.0.html https://docs.astropy.org/en/stable/changelog.html#version-7-0-0-2024-11-21 | Martin Weinelt | 2024-12-12 | 1 | -12/+85 |
| * | python312Packages.numpy: 1.26.4 -> 2.1.2 | natsukium | 2024-11-18 | 1 | -5/+0 |
| * | python3Packages.astropy: 6.1.1 -> 6.1.4 | Martin Weinelt | 2024-10-13 | 1 | -24/+11 |
| * | treewide: replace `stdenv.is` with `stdenv.hostPlatform.is`•••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" ``` | Artturin | 2024-09-25 | 1 | -1/+1 |
| * | python3Packages.astropy: apply patch removing the usage of polyfill.io•••`cdn.polyfill.io` is now considered to be a bad actor. https://sansec.io/research/polyfill-supply-chain-attack Disabled on more test that was flaky on my side. | Doron Behar | 2024-07-01 | 1 | -0/+11 |
| * | python3Packages.astropy: 6.0.1 -> 6.1.1 | Martin Weinelt | 2024-06-24 | 1 | -2/+7 |
| * | python3Packages: format with nixfmt | Martin Weinelt | 2024-05-22 | 1 | -29/+29 |
| * | Merge staging-next into staging | github-actions[bot] | 2024-04-05 | 1 | -0/+4 |
| |\ | |||||
| | * | python311Packages.astropy: Disable on Darwin a flaky test | Doron Behar | 2024-04-04 | 1 | -0/+3 |
| | * | python311Packages.astropy: Disable another flakey test•••Fixes #300820 | Doron Behar | 2024-04-04 | 1 | -0/+1 |
| * | | Merge staging-next into staging | github-actions[bot] | 2024-04-01 | 1 | -2/+2 |
| |\| | |||||
| | * | python311Packages.astropy: 6.0.0 -> 6.0.1 | R. Ryantm | 2024-03-31 | 1 | -2/+2 |
| * | | python312Packages.cython: 0.29.36 -> 3.0.9•••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. | Martin Weinelt | 2024-03-27 | 1 | -2/+2 |
| |/ | |||||
| * | Merge remote-tracking branch 'upstream/master' into staging-next | annalee | 2024-03-13 | 1 | -0/+3 |
| |\ | |||||
| | * | python312Packages.astropy: disable a flaky tests•••Fix #294392 | Doron Behar | 2024-03-11 | 1 | -0/+3 |
| * | | python311Packages.astropy: disable flaky test | Martin Weinelt | 2024-03-12 | 1 | -0/+3 |
| * | | python311Packages.astropy: disable failing test | natsukium | 2024-03-12 | 1 | -0/+4 |
| |/ | |||||
| * | python3Packages.astropy: 5.3.4 -> 6.0.0 | Martin Weinelt | 2023-12-20 | 1 | -14/+7 |
| * | python3.pkgs.astropy: 5.3.3 -> 5.3.4 | Doron Behar | 2023-10-06 | 1 | -12/+7 |
| * | python3.pkgs.astropy: enable and fix tests.•••Add some informatory comments, add doronbehar as maintainers, use `rec` instead of `let ... in`, add `pythonImportsCheck` and `pytestCheckHook`, use `cd $out` to handle issue https://github.com/NixOS/nixpkgs/issues/255262 | Doron Behar | 2023-09-16 | 1 | -10/+39 |
| * | python3.pkgs.astropy: 5.2.1 -> 5.3.3 | Doron Behar | 2023-09-16 | 1 | -2/+2 |
| * | python3.pkgs.astropy: fix build dependencies | Theodore Ni | 2023-08-19 | 1 | -3/+8 |
| * | python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. | Martin Weinelt | 2023-03-03 | 1 | -1/+1 |
| * | python3Packages.astropy: 5.2 -> 5.2.1 | Martin Weinelt | 2023-03-03 | 1 | -2/+2 |
| * | python3Packages.astropy: 5.1 -> 5.2 | Martin Weinelt | 2023-01-05 | 1 | -2/+2 |
| * | python3Packages.astropy: 5.0.3 -> 5.1 | Martin Weinelt | 2022-07-21 | 1 | -2/+2 |
| * | python3Packages.astropy: 5.0.1 -> 5.0.3 | Martin Weinelt | 2022-04-13 | 1 | -2/+2 |
| * | python3Packages.astropy: 5.0 -> 5.0.1 | Martin Weinelt | 2022-03-14 | 1 | -2/+2 |
| * | python3Packages.astropy: propagate pyyaml and packaging•••and some refactoring. | Martin Weinelt | 2022-01-23 | 1 | -24/+30 |
| * | python3Packages.astropy: 4.3.1 -> 5.0 | Jonathan Ringer | 2022-01-23 | 1 | -2/+2 |
| * | python3Packages.astropy: 4.2 -> 4.3.1 | Martin Weinelt | 2021-11-02 | 1 | -2/+2 |
| * | treewide: setuptools_scm -> setuptools-scm | Sandro Jäckel | 2021-06-03 | 1 | -2/+2 |
| * | python3Packages.astropy: unbreak | Robert T. McGibbon | 2020-12-28 | 1 | -13/+13 |
| * | python3Packages.astropy: 4.0.3 -> 4.2 | Frederik Rietdijk | 2020-12-01 | 1 | -2/+2 |
