summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/astropy (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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ütz2025-11-251-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ütz2025-11-151-2/+9
* python3Packages.astropy: add optional dependency uncompresspyRobert Schütz2025-11-151-0/+2
* python3Packages.astropy: 7.0.1 -> 7.1.0•••This commit was automatically generated using update-python-libraries. Martin Weinelt2025-08-092-39/+2
* treewide: run nixfmt 1.0.0Wolfgang Walther2025-07-241-25/+26
* Merge staging-next into stagingnixpkgs-ci[bot]2025-06-152-1/+37
|\
| * python3Packages.astropy: fix tests by tweaked upstream patch•••https://hydra.nixos.org/build/300052658/nixlog/1/tail Vladimír Čunát2025-06-152-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 Li2025-06-161-1/+1
|/
* python313Packages.astropy: drop conflicting patchMartin Weinelt2025-04-041-6/+0
* python3Packages.astropy: 7.0.0 -> 7.0.1•••This commit was automatically generated using update-python-libraries. Martin Weinelt2025-04-031-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 Sundt2025-02-241-1/+1
* python310Packages.astropy: disableDoron Behar2025-01-221-1/+1
* python312Packages.astropy: move stdenv argument aboveDoron Behar2025-01-221-1/+1
* python312Packages.astropy: Use 'ci' hypothesis-profile & reenable flaky testsDoron Behar2025-01-221-25/+18
* python313Packages.astropy: fix tests in darwin sandbox•••__darwinAllowLocalNetworking = true; is required Reno Dakota2024-12-201-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 Dakota2024-12-201-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 Weinelt2024-12-121-12/+85
* python312Packages.numpy: 1.26.4 -> 2.1.2natsukium2024-11-181-5/+0
* python3Packages.astropy: 6.1.1 -> 6.1.4Martin Weinelt2024-10-131-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" ``` Artturin2024-09-251-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 Behar2024-07-011-0/+11
* python3Packages.astropy: 6.0.1 -> 6.1.1Martin Weinelt2024-06-241-2/+7
* python3Packages: format with nixfmtMartin Weinelt2024-05-221-29/+29
* Merge staging-next into staginggithub-actions[bot]2024-04-051-0/+4
|\
| * python311Packages.astropy: Disable on Darwin a flaky testDoron Behar2024-04-041-0/+3
| * python311Packages.astropy: Disable another flakey test•••Fixes #300820 Doron Behar2024-04-041-0/+1
* | Merge staging-next into staginggithub-actions[bot]2024-04-011-2/+2
|\|
| * python311Packages.astropy: 6.0.0 -> 6.0.1R. Ryantm2024-03-311-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 Weinelt2024-03-271-2/+2
|/
* Merge remote-tracking branch 'upstream/master' into staging-nextannalee2024-03-131-0/+3
|\
| * python312Packages.astropy: disable a flaky tests•••Fix #294392 Doron Behar2024-03-111-0/+3
* | python311Packages.astropy: disable flaky testMartin Weinelt2024-03-121-0/+3
* | python311Packages.astropy: disable failing testnatsukium2024-03-121-0/+4
|/
* python3Packages.astropy: 5.3.4 -> 6.0.0Martin Weinelt2023-12-201-14/+7
* python3.pkgs.astropy: 5.3.3 -> 5.3.4Doron Behar2023-10-061-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 Behar2023-09-161-10/+39
* python3.pkgs.astropy: 5.2.1 -> 5.3.3Doron Behar2023-09-161-2/+2
* python3.pkgs.astropy: fix build dependenciesTheodore Ni2023-08-191-3/+8
* python3.pkgs: Migrate fetchers to use hash•••when they already rely on SRI hashes. Martin Weinelt2023-03-031-1/+1
* python3Packages.astropy: 5.2 -> 5.2.1Martin Weinelt2023-03-031-2/+2
* python3Packages.astropy: 5.1 -> 5.2Martin Weinelt2023-01-051-2/+2
* python3Packages.astropy: 5.0.3 -> 5.1Martin Weinelt2022-07-211-2/+2
* python3Packages.astropy: 5.0.1 -> 5.0.3Martin Weinelt2022-04-131-2/+2
* python3Packages.astropy: 5.0 -> 5.0.1Martin Weinelt2022-03-141-2/+2
* python3Packages.astropy: propagate pyyaml and packaging•••and some refactoring. Martin Weinelt2022-01-231-24/+30
* python3Packages.astropy: 4.3.1 -> 5.0Jonathan Ringer2022-01-231-2/+2
* python3Packages.astropy: 4.2 -> 4.3.1Martin Weinelt2021-11-021-2/+2
* treewide: setuptools_scm -> setuptools-scmSandro Jäckel2021-06-031-2/+2
* python3Packages.astropy: unbreakRobert T. McGibbon2020-12-281-13/+13
* python3Packages.astropy: 4.0.3 -> 4.2Frederik Rietdijk2020-12-011-2/+2