From 891b2f92bf717e713b6828ec65d9ef5bc387bc49 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 24 Oct 2025 12:05:32 +0100 Subject: [PATCH] gnu: python-towncrier: Update to 25.8.0. * gnu/packages/python-xyz.scm (python-towncrier): Update to 25.8.0. [arguments]: Drop all. [propagated-inputs]: Remove python-click-default-group, python-incremental, and python-tomli. [native-inputs]: Remove python-packaging. Change-Id: Ie3deb934391b5028c5f6d4aa056caf048a9499fa --- gnu/packages/python-xyz.scm | 32 ++++++++++++-------------------- 1 file changed, 12 insertions(+), 20 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fc7c0c5c5b3f9c6f9d0df66168c0872e95ba3b80..a035706231b2f0b2c9873f2c296b6375ae6d25ec 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27840,35 +27840,27 @@ and @code{tokens_to_src} to roundtrip.") (define-public python-towncrier (package (name "python-towncrier") - (version "23.6.0") - (source (origin - (method url-fetch) - (uri (pypi-uri "towncrier" version)) - (sha256 - (base32 - "1hbhzxcn30qlnab1rnk2bf09jfy5bpxzfdp6zfn8sz3jnidbsagw")))) + (version "25.8.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "towncrier" version)) + (sha256 + (base32 "1c8fjjwlx29jgllxvyzby4cn51iraxba0cmfnfmmgb9iz0lnvwgf")))) (build-system pyproject-build-system) - (arguments - (list #:test-flags - ;; TODO: Why is this failing? - #~'("-k" "not test_version"))) - (propagated-inputs - (list python-click - python-click-default-group - python-incremental - python-jinja2 - python-tomli)) (native-inputs (list git-minimal/pinned ;tests create git repositories python-hatchling - python-packaging python-pytest python-twisted)) + (propagated-inputs + (list python-click + python-jinja2)) (home-page "https://towncrier.readthedocs.io/en/stable/") (synopsis "Manage release notes") (description - "@code{towncrier} is a utility to produce useful, summarized news -files (also known as changelogs) for a project.") + "@code{towncrier} is a utility to produce useful, summarized news files + (also known as changelogs) for a project.") (license license:expat))) (define-public python-future-fstrings