diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-01 23:12:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-30 10:30:46 +0100 |
commit | 7c89281e3b5b4fc4dbc11ded84288a1bd427b3d5 (patch) | |
tree | 2d44ed24c69e457f3fabd2341ac809d849df5537 | |
parent | 695a3ba8e72c3a5019f0c737acc7598b08bd0029 (diff) | |
download | guix-7c89281e3b5b4fc4dbc11ded84288a1bd427b3d5.tar.gz guix-7c89281e3b5b4fc4dbc11ded84288a1bd427b3d5.zip |
gnu: python-photutils: Update to 1.13.0.
* gnu/packages/astronomy.scm (python-photutils): Update to 1.13.0.
[native-inputs]: Remove python-cython; add python-cython-3.
Change-Id: Id73418fc2324882055015fb2bb2664b00b38a1a3
-rw-r--r-- | gnu/packages/astronomy.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm index 73deeef890..da63bbc5d0 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -2499,13 +2499,13 @@ can be described by @acronym{WCS, World Coordinate System} translations.") (name "python-photutils") ;; PyPI version for source archive is missing minor 0, See ;; <https://github.com/astropy/photutils/issues/1727> - (version "1.12") + (version "1.13.0") (source (origin (method url-fetch) (uri (pypi-uri "photutils" version)) (sha256 - (base32 "0y4kcj6qjnzwjswc0c2iimh11b0jz6b9ianbh58w4gnb4y71lr6r")))) + (base32 "1lhpcxh2adknzlmrddqd712yzpwdlqlw9jn49ajj4kz5z7822dns")))) (build-system pyproject-build-system) (arguments (list @@ -2548,7 +2548,7 @@ setup(ext_modules=get_extensions())"))))) python-shapely python-tqdm)) (native-inputs - (list python-cython + (list python-cython-3 python-extension-helpers python-pytest-astropy python-pytest-xdist |