summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-01-21 11:32:35 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:31 +0100
commit9effcb54c6f99271d0ba858c6cef0cecb9ee19ae (patch)
treee8f2a2458314ab2dc43114a4cb6cc031ac92225b
parent4b388188f870eb37120514050ac9cc4530628e3e (diff)
gnu: python-markupsafe: Update to 3.0.3.
* gnu/packages/python-xyz.scm (python-markupsafe): Update to 3.0.3. [native-inputs]: Remove python-wheel. Change-Id: I6222521337536075750614a3c9284fd3633768ba
-rw-r--r--gnu/packages/python-xyz.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 725f69f9eeb..b0b692eb5b1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8833,15 +8833,18 @@ possible.")
(define-public python-markupsafe
(package
(name "python-markupsafe")
- (version "3.0.2")
+ (version "3.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "markupsafe" version))
(sha256
- (base32 "1w1b1a5pskpqhx1mb53rgpv9srplhrrkr4hsl67f8rq1z3nx6mgf"))))
+ (base32 "160npsg7jh6mbiwy23xm9aqcxgcn0wl33hgx42rmfr2biy09a9kj"))))
(build-system pyproject-build-system)
- (native-inputs (list python-pytest python-setuptools python-wheel))
+ ;; tests: 79 passed, 1 skipped
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
(home-page "https://markupsafe.palletsprojects.com")
(synopsis "XML/HTML/XHTML markup safe string implementation for Python")
(description