guix_mirror_bot pushed a commit to branch astro-updates in repository guix.
commit 41a4cc76b5eaa807ad00a0a76f2b9cdb21d00904 Author: Sharlatan Hellseher <[email protected]> AuthorDate: Wed Aug 13 21:43:13 2025 +0100 gnu: python-astropy: Update to 7.1.0. * gnu/packages/astronomy.scm (python-astropy): Update to 7.1.0. [native-inputs]: Remove python-ipython, python-pandas, python-pytest-mpl, python-scikit-image, python-setuptools, python-setuptools-scm, and python-wheel; python-pytest-doctestplus, and python-setuptools-scm-next. [propagated-inputs] Add python-asdf-astropy, python-beautifulsoup4, python-bleach, python-bottleneck, python-certifi, python-dask, python-fsspec, python-html5lib, python-ipykernel, python-ipython, python-ipywidgets, python-jupyter-core, python-mpmath, python-pandas, python-pandas, python-pytz, python-s3fs, python-sortedcontainers, and python-uncompresspy. Change-Id: I250cf595dba95d2e35261470150737620119bf57 --- gnu/packages/astronomy.scm | 58 +++++++++++++++++++++++++++++++--------------- 1 file changed, 39 insertions(+), 19 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index d384041935..05833f6572 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2510,13 +2510,13 @@ constraints (i.e., altitude, airmass, moon separation/illumination, etc.) (define-public python-astropy (package (name "python-astropy") - (version "7.0.1") + (version "7.1.0") (source (origin (method url-fetch) (uri (pypi-uri "astropy" version)) (sha256 - (base32 "0q74735xzrvxxpjv3sa8w68sfnziw1jilr70qba7qhxj8fsfwbrr")) + (base32 "1iakikzhw173djb2p24229ndpvzpbcanyg9h4k7viccm48r59wn8")) (modules '((guix build utils))) (snippet '(begin @@ -2532,6 +2532,7 @@ constraints (i.e., altitude, airmass, moon separation/illumination, etc.) (build-system pyproject-build-system) (arguments (list + ;; tests: 29347 passed, 373 skipped, 233 xfailed, 32 warnings #:test-flags #~(list "--pyargs" "astropy" ;; XXX: Tests are not thread save when they are more than 8. @@ -2571,37 +2572,56 @@ constraints (i.e., altitude, airmass, moon separation/illumination, etc.) pkg-config python-cython-3 python-extension-helpers - python-ipython python-objgraph - python-pandas python-pytest python-pytest-astropy python-pytest-astropy-header - python-pytest-mpl + python-pytest-doctestplus python-pytest-xdist - python-scikit-image - python-setuptools - python-setuptools-scm + python-setuptools-scm-next python-sgp4 python-skyfield - python-threadpoolctl - python-timezonefinder - python-wheel)) + python-threadpoolctl)) (inputs - (list expat wcslib)) + (list expat + wcslib)) (propagated-inputs (list python-astropy-iers-data - python-configobj - python-h5py - python-jplephem - python-matplotlib + python-configobj ;to replace custom module python-numpy python-packaging - python-ply - python-pyarrow + python-ply ;to replace custom module python-pyerfa python-pyyaml - python-scipy)) + ;; [recommended] + python-matplotlib + python-scipy + ;; [jupyter] + ;; python-ipydatagrid ;no packaged + python-ipykernel + python-ipython + python-ipywidgets + python-jupyter-core + python-pandas + ;; [optional] + python-asdf + python-asdf-astropy + python-beautifulsoup4 + python-bleach + python-bottleneck + python-certifi + python-dask + python-fsspec + python-h5py + python-html5lib + python-jplephem + python-mpmath + python-pandas + python-pyarrow + python-pytz + python-s3fs + python-sortedcontainers + python-uncompresspy)) (home-page "https://www.astropy.org/") (synopsis "Core package for Astronomy in Python") (description
