[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#63542] [PATCH v2 04/20] gnu: python-sunpy: Update to 4.1.5.
From: |
Sharlatan Hellseher |
Subject: |
[bug#63542] [PATCH v2 04/20] gnu: python-sunpy: Update to 4.1.5. |
Date: |
Wed, 24 May 2023 22:51:38 +0100 |
* gnu/packages/astronomy.scm (python-sunpy): Update to 4.1.5, simplify
package.
[arguments]{test-flags}: Disable 2 failing tests.
[arguments]{phases}: Simplify prepare-test-environment by remove
redundant substitution.
[inputs]: Add opencv for OpenCV-Pyton support.
---
gnu/packages/astronomy.scm | 32 ++++++++++----------------------
1 file changed, 10 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 5c07ff2c8d..196aeba0e3 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1885,16 +1885,21 @@ (define-public python-sgp4
(define-public python-sunpy
(package
(name "python-sunpy")
- (version "4.1.1")
+ (version "4.1.5")
(source
(origin
(method url-fetch)
(uri (pypi-uri "sunpy" version))
(sha256
- (base32 "1h8dnsic96bxm5l278vk6jj5h4bh1b143fghsvv5rhigk137vysp"))))
+ (base32 "1j5g0ivsrc5ji9s7jc3kcbi2injfs3y31pm3priycljwcsxspkpm"))))
(build-system pyproject-build-system)
(arguments
(list
+ #:test-flags
+ #~(list "-k" (string-append
+ ;; XXX: Failed: DID NOT RAISE <class 'ModuleNotFoundError'>
+ "not test_main_nonexisting_module"
+ " and not test_main_stdlib_module"))
#:phases
#~(modify-phases %standard-phases
(add-before 'install 'writable-compiler
@@ -1902,26 +1907,10 @@ (define-public python-sunpy
(make-file-writable "sunpy/_compiler.c")))
(add-before 'check 'prepare-test-environment
(lambda _
- (setenv "HOME" "/tmp")
- (make-file-writable "sunpy/_compiler.c")
- ;; TODO: (Sharlatan-20221106T115800+0000): Review failing tests
- (substitute* "sunpy/image/tests/test_transform.py"
- (("def test_clipping") "def __off_test_clipping")
- (("def test_nans") "def __off_test_nans")
- (("def test_endian") "def __off_test_endian"))
- (substitute* "sunpy/map/tests/test_mapbase.py"
- (("def test_derotating_nonpurerotation_pcij")
- "def __off_test_derotating_nonpurerotation_pcij"))
- (substitute* "sunpy/map/sources/tests/test_mdi_source.py"
- (("def test_synoptic_source")
- "def __off_test_synoptic_source"))
- (substitute* "sunpy/tests/tests/test_self_test.py"
- (("def test_main_nonexisting_module")
- "def __off_test_main_nonexisting_module")
- (("def test_main_stdlib_module")
- "def __off_test_main_stdlib_module")))))))
+ (setenv "HOME" "/tmp"))))))
(native-inputs
- (list python-aiohttp
+ (list opencv ; For tests, includes OpenCV-Python
+ python-aiohttp
python-extension-helpers
python-hvpy
python-packaging
@@ -1950,7 +1939,6 @@ (define-public python-sunpy
python-matplotlib
python-mpl-animators
python-numpy
- ;; python-opencv-python ; not packed yet
python-pandas
python-reproject
python-scikit-image
--
2.39.2
- [bug#63542] [PATCH 14/19] gnu: python-astral: Update to 3.2., (continued)
- [bug#63542], Sharlatan Hellseher, 2023/05/23
- [bug#63542] [PATCH v2 00/20]: Cover review points., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 01/20] gnu: python-asdf-astropy: Update to 0.4.0., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 02/20] gnu: python-asdf-wcs-schemas: Symplify., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 03/20] gnu: python-gwcs: Update to 0.18.3., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 05/20] gnu: python-spherical-geometry: Add update note., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 07/20] gnu: python-ccdproc: Enable tests., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 04/20] gnu: python-sunpy: Update to 4.1.5.,
Sharlatan Hellseher <=
- [bug#63542] [PATCH v2 06/20] gnu: python-sgp4: Update to 2.22., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 12/20] gnu: python-astroquery: Use Gexp., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 14/20] gnu: python-astral: Update to 3.2., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 10/20] gnu: python-fitsio: Use Gexp., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 17/20] gnu: python-ephem: Update to 4.1.4., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 08/20] gnu: python-reproject: Update to 0.10.0., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 09/20] gnu: python-pyvo: Update to 1.4.1., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 11/20] gnu: python-astropy-healpix: Use Gexp., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 15/20] gnu: python-poppy: Update to 1.1.1., Sharlatan Hellseher, 2023/05/24
- [bug#63542] [PATCH v2 13/20] gnu: python-pynbody: Update to 1.3.1, simplify., Sharlatan Hellseher, 2023/05/24