guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 587dbdec8afa0cf6c46aabe241f7ad6c933d0fc2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Dec 12 16:31:37 2025 +0000
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
---
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 225c5bc12e..29f25f89e9 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")