[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/46: gnu: python-astropy: Update to 6.0.0.
From: |
guix-commits |
Subject: |
10/46: gnu: python-astropy: Update to 6.0.0. |
Date: |
Tue, 27 Feb 2024 17:55:14 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit e8c1c87c340bbd592879d42754dd0126d8319adb
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Jan 27 12:47:02 2024 +0000
gnu: python-astropy: Update to 6.0.0.
* gnu/packages/astronomy.scm (python-astropy): Update to 6.0.0.
[arguments] <#:phases>: Adjust 'preparations phase to be compatible with
the new code layout. In 'check phase, silent one more failing test.
[propagated-inputs]: Add python-astropy-iers-data.
[native-inputs]: Remove python-cython; add python-cython-3,
python-matplotlib and python-pytest-mpl.
Change-Id: Id48a7cf05c30c1a1f7799fdc162b910316743f7c
---
gnu/packages/astronomy.scm | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 45394a7070..11cdd9e862 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1478,13 +1478,13 @@ accurately in real time at any rate desired.")
(define-public python-astropy
(package
(name "python-astropy")
- (version "5.3.4")
+ (version "6.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "astropy" version))
(sha256
- (base32 "1n7iwvjari4xv37094cpiapmjhhm57b04hi4r40wqb5czbigg46l"))
+ (base32 "1nbpqx7ibm8zsyyy17y5rmfjamwz6mv0sy4drlisap9hald81k83"))
(modules '((guix build utils)))
(snippet
'(begin
@@ -1508,16 +1508,11 @@ accurately in real time at any rate desired.")
;; Some tests require a writable home.
(setenv "HOME" "/tmp")
;; Relax xfail tests.
- (substitute* "setup.cfg"
+ (substitute* "pyproject.toml"
(("xfail_strict = true") "xfail_strict = false"))
- ;; Replace all references to external ply.
- (let ((ply-files '("coordinates/angle_formats.py"
- "utils/parsing.py")))
- (with-directory-excursion "astropy"
- (map (lambda (file)
- (substitute* file (("astropy.extern.ply")
- "ply")))
- ply-files)))
+ ;; Replace reference to external ply.
+ (substitute* "astropy/utils/parsing.py"
+ (("astropy.extern.ply") "ply"))
;; Replace reference to external configobj.
(with-directory-excursion "astropy/config"
(substitute* "configuration.py"
@@ -1541,22 +1536,26 @@ accurately in real time at any rate desired.")
" and not test_ignore_sigint"
" and not test_parquet_filter"
;; See
https://github.com/astropy/astropy/issues/15537
- " and not test_pvstar"))))))))
+ " and not test_pvstar"
+ ;; E ModuleNotFoundError: No module named 'wofz'
+ " and not test_pickle_functional"))))))))
(native-inputs
(list pkg-config
python-colorlog
python-coverage
- python-cython
+ python-cython-3
python-extension-helpers
python-h5py
python-ipython
python-jplephem
+ python-matplotlib
python-objgraph
python-pandas
python-pyarrow
python-pytest
python-pytest-astropy
python-pytest-astropy-header
+ python-pytest-mpl
python-pytest-xdist
python-scikit-image
python-scipy
@@ -1567,7 +1566,8 @@ accurately in real time at any rate desired.")
(inputs
(list expat wcslib))
(propagated-inputs
- (list python-configobj
+ (list python-astropy-iers-data
+ python-configobj
python-numpy
python-packaging
python-ply
- branch master updated (16ab67182b -> 8c0282cf54), guix-commits, 2024/02/27
- 02/46: gnu: giza: Update to 1.4.1., guix-commits, 2024/02/27
- 05/46: gnu: parfive: Update to 2.0.2., guix-commits, 2024/02/27
- 01/46: gnu: calceph: Update to 3.5.5., guix-commits, 2024/02/27
- 09/46: gnu: Add python-astropy-iers-data., guix-commits, 2024/02/27
- 06/46: gnu: parfive: Simplify package., guix-commits, 2024/02/27
- 12/46: gnu: python-asdf-2.15: Deprecate package., guix-commits, 2024/02/27
- 08/46: gnu: python-aioftp: Update to 0.22.3., guix-commits, 2024/02/27
- 10/46: gnu: python-astropy: Update to 6.0.0.,
guix-commits <=
- 04/46: gnu: phd2: Update to 2.6.13., guix-commits, 2024/02/27
- 11/46: gnu: python-astropy: Improve packages style., guix-commits, 2024/02/27
- 03/46: gnu: indi-2.0: Update to 2.0.6., guix-commits, 2024/02/27
- 15/46: gnu: python-asdf-transform-schemas: Update to 0.4.0., guix-commits, 2024/02/27
- 07/46: gnu: siril: Update to 1.2.1., guix-commits, 2024/02/27
- 13/46: gnu: python-asdf-fits-schemas: Update to 0.0.1-1.d1b5e7a., guix-commits, 2024/02/27
- 14/46: gnu: python-asdf-time-schemas: Update to 0.0.1-3.a306206., guix-commits, 2024/02/27
- 19/46: gnu: python-jwst: Update to 1.13.4., guix-commits, 2024/02/27
- 16/46: gnu: python-asdf-wcs-schemas: Update to 0.3.0., guix-commits, 2024/02/27
- 18/46: gnu: python-h5netcdf: Update to 1.3.0., guix-commits, 2024/02/27