guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit bfb1732a45f934c25c13eea1bf6ae34415c0ac3b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 3 11:32:36 2026 +0100
gnu: python-astroml: Skip one more test.
As seen from bug tracker <https://github.com/astroML/astroML/issues>
this project is not maintained actively and has reported issues with
Astropy 6 and NumPy 1.26, where Guix has Astropy 8 and 7, and NumPy 2
with attempt to reduce number of packages depending on NumPy 1.
With all that above, python-astroml maybe flagged as deprecated package
in the next refresh cycle due to amount of incompatible inputs and lack
of maintenance.
* gnu/packages/astronomy.scm (python-astroml):
[arguments] <#:test-flags>: Skip one more tests.
---
gnu/packages/astronomy.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index df5bbd8acf..59a4efee43 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -3198,6 +3198,7 @@ of functions to execute the desired steps in the
mock-observing process.")
(build-system pyproject-build-system)
(arguments
(list
+ ;; tests: 196 passed, 4 skipped, 3 deselected, 29 warnings
#:test-flags
'(list "--ignore-glob=examples/*"
;; Disable tests which are not compatible with Astropy 6.0.0, see
@@ -3210,7 +3211,8 @@ of functions to execute the desired steps in the
mock-observing process.")
;; <https://github.com/astroML/astroML/issues/281>.
"--ignore=astroML/tests/test_resample.py"
"-k" (string-append "not
astroML.density_estimation.empirical.EmpiricalDistribution"
- " and not
astroML.utils.utils.log_multivariate_gaussian"))
+ " and not
astroML.utils.utils.log_multivariate_gaussian"
+ " and not test_generate_RW"))
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'patch-build-system