From 782d532a4076bd6b89313d2d93a5ee6a9748f864 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 9 Dec 2025 21:00:33 +0000 Subject: [PATCH] gnu: python-algopy: Update to 0.7.2. * gnu/packages/python-science.scm (python-algopy): Update to 0.7.2. [native-inputs]: Remove python-wheel. Change-Id: Ifac98dffd209bea3d50ef3ded0a0aee0a24faa8c Signed-off-by: Rutherther --- gnu/packages/python-science.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index 4e19c15fff506f9b7fcb347f7b3889af1b8a3218..ad8ccaa753e5d4da5315869fd84e9a6b495c7569 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -226,18 +226,17 @@ implements the latter option to help with matplotlib graphs.") (define-public python-algopy (package (name "python-algopy") - (version "0.6.0") ; the higher versions requir NumPy 2+ stack + (version "0.7.2") (source (origin (method url-fetch) (uri (pypi-uri "algopy" version)) (sha256 - (base32 "1vjrzzxa3gvyh2zvm1vwg0s6a7dv23rihgdvgyj1vqniyymp91nq")))) + (base32 "0l9d4pkbal6m6q8v6w5zr9wlij4sfycc8i2w7irk0i4n8hyvm0ja")))) (build-system pyproject-build-system) (native-inputs (list python-pytest - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-numpy python-scipy))