guix_mirror_bot pushed a commit to branch sage
in repository guix.

commit 2252db9a42c64956c2228b8cb06ae0675808ea7c
Author: Andreas Enge <[email protected]>
AuthorDate: Mon Jan 26 22:28:13 2026 +0100

    gnu: Use python-3.12 for pyproject-build-system.
    
    * gnu/packages/python.scm (python-sans-pip): Inherit from python-3.12.
    [arguments]: Inherit from python-3.12.
    
    Change-Id: I6da498505f5a755a9f5a711fb67b2bc8ca0346a4
---
 gnu/packages/python.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6f78ad8770..4cf50d45ea 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1086,7 +1086,7 @@ def contents() -> str:
 
 (define-public python-3.12
   (package
-    (name "python-next")
+    (name "python")
     (version "3.12.12")
     (source
      (origin
@@ -1575,9 +1575,9 @@ and the unversioned commands available.")))
 ;; The Python used in pyproject-build-system.
 (define-public python-sans-pip
   (hidden-package
-   (package/inherit python
+   (package/inherit python-3.12
      (arguments
-      (substitute-keyword-arguments (package-arguments python)
+      (substitute-keyword-arguments (package-arguments python-3.12)
         ((#:configure-flags flags #~())
          #~(append '("--with-ensurepip=no")
                    (delete "--with-ensurepip=install" #$flags))))))))

Reply via email to