guix_mirror_bot pushed a commit to branch master
in repository guix.

commit fa96bd8d1314dca6d36f9be34bf59ddf10147c2b
Author: Nguyễn Gia Phong <[email protected]>
AuthorDate: Mon Sep 29 10:46:14 2025 +0900

    gnu: python-setuptools-next: Mark as deprecated.
    
    Replace all python-setuptools-next occurrences with python-setuptools.
    
    * gnu/packages/python-build.scm (python-setuptools-next):
      Mark as a deprecated public alias.
    * gnu/packages/astronomy.scm (python-asdf-coordinates-schemas,
      python-asdf-standard, python-jplephem, python-rad)
      [native-inputs]: Replace python-setuptools-next
      with python-setuptools.
    * python-crypto.scm (python-ed25519) [native-inputs]:
      Replace python-setuptools-next with python-setuptools.
    * gnu/packages/qt.scm (python-sip) [native-inputs, propagated-inputs]:
      Replace python-setuptools-next with python-setuptools.
      (python-pyqt-builder) [native-inputs]:
      Replace python-setuptools-next with python-setuptools.
    * gnu/packages/textutils.scm (cobib) [native-inputs]:
      Replace python-setuptools-next with python-setuptools.
    
    Change-Id: I5f2d7ec8c62dc0fa0855c5eb64a4f87579d188eb
---
 gnu/packages/astronomy.scm     | 8 ++++----
 gnu/packages/python-build.scm  | 3 ++-
 gnu/packages/python-crypto.scm | 2 +-
 gnu/packages/qt.scm            | 6 +++---
 gnu/packages/textutils.scm     | 2 +-
 5 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 0087934c02..747c0ec199 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -2273,7 +2273,7 @@ support for reading and writing various compression 
algorithms including:
      (native-inputs
       (list python-pytest
             python-pytest-xdist
-            python-setuptools-next
+            python-setuptools
             python-setuptools-scm
             python-wheel))
      (propagated-inputs
@@ -2304,7 +2304,7 @@ implementation package such as asdf-astropy.")
            python-pytest
            python-pytest-asdf-plugin
            python-pyyaml
-           python-setuptools-next
+           python-setuptools
            python-setuptools-scm))
     (home-page "https://asdf-standard.readthedocs.io/";)
     (synopsis "ASDF standard schemas")
@@ -5093,7 +5093,7 @@ satellite.")
                 (with-directory-excursion "ci"
                   (invoke "python" "-m" "unittest" "test"))))))))
     (native-inputs
-     (list python-setuptools-next))
+     (list python-setuptools))
     (propagated-inputs
      (list python-numpy))
     (home-page "https://github.com/brandon-rhodes/python-jplephem";)
@@ -7054,7 +7054,7 @@ wiggles are caused by resampling noise or aliasing 
artifacts.")
            python-pytest-asdf-plugin
            python-pytest-doctestplus
            python-semantic-version
-           python-setuptools-next
+           python-setuptools
            python-setuptools-scm))
     (propagated-inputs
      (list python-asdf
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index ed903209f9..4f0302d174 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -350,7 +350,8 @@ facilitate packaging Python projects, where packaging 
includes:
     (native-inputs
      (list python-wheel-0.40))))
 
-(define-public python-setuptools-next python-setuptools)
+(define-deprecated/public-alias python-setuptools-next
+  python-setuptools)                   ;may be removed after 2025-12-01
 
 (define-public python-wheel
   (package
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index b20bec061f..938fe82480 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -627,7 +627,7 @@ OpenSSL library.")
           (replace 'check
             (lambda* (#:key tests? #:allow-other-keys)
               (when tests? (invoke "python" "test_ed25519_kat.py")))))))
-    (native-inputs (list python-setuptools-next))
+    (native-inputs (list python-setuptools))
     (home-page "https://github.com/warner/python-ed25519";)
     (synopsis "Ed25519 public-key signatures")
     (description
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index e13c73e3cb..57c9308c12 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -4372,9 +4372,9 @@ Python.")
     (arguments
      (list #:tests? #f))        ; No test system found.
     (native-inputs
-     (list python-setuptools-next python-setuptools-scm-next python-wheel))
+     (list python-setuptools python-setuptools-scm-next python-wheel))
     (propagated-inputs
-     (list python-packaging python-setuptools-next python-tomli))
+     (list python-packaging python-setuptools python-tomli))
     (home-page "https://www.riverbankcomputing.com/software/sip/intro";)
     (synopsis "Python binding creator for C and C++ libraries")
     (description
@@ -4724,7 +4724,7 @@ set of three modules.")))
         (base32
          "1g40j5iyad8bw8113rsxxkbkdi7g1lcjj0lb1j7pma442i3fmpsn"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-setuptools-next
+    (native-inputs (list python-setuptools
                          python-setuptools-scm-next
                          python-wheel))
     (inputs
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index fdfd8ea605..0caad56e8a 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1317,7 +1317,7 @@ OpenDocument presentations (*.odp).")
            python-pytest
            python-pytest-asyncio
            python-pytest-textual-snapshot
-           python-setuptools-next))
+           python-setuptools))
     (propagated-inputs
      (list python-beautifulsoup4
            python-bibtexparser

Reply via email to