[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: python-pint: Update to 0.22.
From: |
guix-commits |
Subject: |
02/04: gnu: python-pint: Update to 0.22. |
Date: |
Thu, 12 Oct 2023 20:57:27 -0400 (EDT) |
monego pushed a commit to branch master
in repository guix.
commit f1b7111f093c86b97b1049c6ee2ddb6e9c2910dc
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Oct 12 10:03:19 2023 -0300
gnu: python-pint: Update to 0.22.
* gnu/packages/python-xyz.scm (python-pint): Update to 0.22.
[native-inputs]: Add python-uncertainties.
[propagated-inputs]: Add python-typing-extensions.
---
gnu/packages/python-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a45ff44be1..c889f16685 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1220,13 +1220,13 @@ Markdown. All extensions are found under the module
namespace of pymdownx.")
(define-public python-pint
(package
(name "python-pint")
- (version "0.20.1")
+ (version "0.22")
(source (origin
(method url-fetch)
(uri (pypi-uri "Pint" version))
(sha256
(base32
- "0rv0cbala7ibjbaf6kkcn0mdhqdbajnvlcw0f15gwzfwg10g0z1q"))))
+ "0cs4lsvngrkfzpnrmxcwz728m47y0xbw1knksz51cc6gpdm9y4rd"))))
(build-system pyproject-build-system)
(arguments
;; This single test tries to write to $HOME/.cache/pint.
@@ -1241,7 +1241,9 @@ Markdown. All extensions are found under the module
namespace of pymdownx.")
python-pytest-subtests
python-setuptools-scm
python-sparse
+ python-uncertainties
python-xarray))
+ (propagated-inputs (list python-typing-extensions))
(home-page "https://github.com/hgrecco/pint")
(synopsis "Physical quantities module")
(description