guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 891b2f92bf717e713b6828ec65d9ef5bc387bc49
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 24 12:05:32 2025 +0100

    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 fc7c0c5c5b..a035706231 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

Reply via email to