From 3dca03a7f3987f1a452ba2d4704c62acff57d880 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 12 Dec 2025 16:31:37 +0000 Subject: [PATCH] gnu: python-kanon: Use python-numpy@1. * gnu/packages/astronomy.scm (python-kanon)[propagated-inputs]: Remove python-numpy; add python-numpy-1. Change-Id: I3ded448d4f6fb6e7d34eaf24064816f3415e45a9 Signed-off-by: Rutherther --- gnu/packages/astronomy.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 225c5bc12e0705205a692c681eb66c0ad6e3b479..29f25f89e9dd945371c2d3e10c88806df8d171b9 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -5919,7 +5919,7 @@ files.") (version "0.6.6") (source (origin - (method git-fetch) ; no release in PyPI + (method git-fetch) (uri (git-reference (url "https://github.com/ALFA-project-erc/kanon") (commit (string-append "v" version)))) @@ -5929,10 +5929,10 @@ files.") (build-system pyproject-build-system) (arguments (list + ;; tests: 150 passed, 18 deselected, 246 warnings #:test-flags - #~(list ;"--numprocesses" "auto" - ;; XXX: This tests failing a lot. - "-k" (string-append "not test_attribute_forwardin" + ;; XXX: This tests failing a lot. + #~(list "-k" (string-append "not test_attribute_forwardin" " and not test_declination" " and not test_init_basedquantity" " and not test_ptolemy_viz" @@ -5969,11 +5969,11 @@ files.") (propagated-inputs (list python-astropy-6 python-matplotlib - python-numpy + python-numpy-1 python-pandas python-requests python-scipy - ;; Optional + ;; [optional] python-ipykernel python-papermill)) (home-page "https://dishas.obspm.fr")