monego pushed a commit to branch master
in repository guix.
commit 9f918e9c48d7ad4dcce39732e5a8cd7ad5f8382b
Author: Vinicius Monego <[email protected]>
AuthorDate: Mon Dec 4 20:08:33 2023 -0300
gnu: python-symengine: Update to 0.11.0.
* gnu/packages/python-xyz.scm (python-symengine): Update to 0.11.0.
[native-inputs]: Replace python-cython with python-cython-3.
Change-Id: Ieab464491e3df6e2bdb5b552cbf48ebf67ff81e4
---
gnu/packages/python-xyz.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7f9955cffd..4d692a37de 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -80,7 +80,7 @@
;;; Copyright © 2020 Josh Holland <[email protected]>
;;; Copyright © 2020 Yuval Kogman <[email protected]>
;;; Copyright © 2020, 2022 Michael Rohleder <[email protected]>
-;;; Copyright © 2020, 2021, 2022, 2023 Vinicius Monego <[email protected]>
+;;; Copyright © 2020, 2021, 2022, 2023, 2024 Vinicius Monego
<[email protected]>
;;; Copyright © 2020 Guy Fleury Iteriteka <[email protected]>
;;; Copyright © 2020 Hendursaga <[email protected]>
;;; Copyright © 2020 Malte Frank Gerdes <[email protected]>
@@ -17745,13 +17745,13 @@ document.")
(define-public python-symengine
(package
(name "python-symengine")
- (version "0.10.0")
+ (version "0.11.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "symengine" version))
(sha256
- (base32 "0i97lb6h8jk0k98805mkw6id5r537469zbh2d95320azq9nfj824"))))
+ (base32 "0n54rdpmz3bmxrbjqflmlrgc27rvik1jkv6x3cjvgsq4p0lhvlqd"))))
(build-system python-build-system)
(arguments
(list
@@ -17765,7 +17765,7 @@ document.")
(invoke "nosetests" "-v" "symengine.tests"))
(format #t "test suite not run~%")))))))
(native-inputs
- (list cmake python-cython python-nose))
+ (list cmake python-cython-3 python-nose))
(inputs
(list symengine))
(home-page "https://github.com/symengine/symengine.py")