From 32e3c68892e4e7ef811710f6e4b062beeef8b2e1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 4 Nov 2025 15:01:31 +0900 Subject: [PATCH] gnu: python: Update to 3.11.14, absorbing graft. * gnu/packages/python.scm (python-3.11/fixed): Delete variable. (python-3.11): Update to 3.11.14. Change-Id: I764c47b1a78f0663e5ec2780da8b186f6092bdb6 --- gnu/packages/python.scm | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 881fc6364cf..9e97a75cbd5 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -677,20 +677,18 @@ def contents() -> str: (package (inherit python-3.10) (name "python") - (version "3.11.11") - (replacement python-3.11/fixed) + (version "3.11.14") (source (origin (method url-fetch) - (uri (string-append "https://www.python.org/ftp/python/" - version "/Python-" version ".tar.xz")) + (uri (string-append "https://www.python.org/ftp/python/" version + "/Python-" version ".tar.xz")) (patches (search-patches "python-3-deterministic-build-info.patch" "python-3.11-fix-tests.patch" "python-3-hurd-configure.patch" "python-3-search-paths.patch")) - (sha256 - (base32 - "1qrvsxg5g0b0pgz2iigxic2j3g6b2c59iva46vins8ydl33j169a")) + (sha256 (base32 + "0y4v42qm66nvizjxbnixh59283a54nki51jmbrgwkhc8bkndhgld")) (modules '((guix build utils))) (snippet '(begin @@ -1081,16 +1079,6 @@ def contents() -> str: (variable "PYTHONTZPATH") (files (list "share/zoneinfo"))))))) -(define-public python-3.11/fixed - (package/inherit python-3.11 - (version "3.11.14") - (source (origin - (inherit (package-source python-3.11)) - (uri (string-append "https://www.python.org/ftp/python/" version - "/Python-" version ".tar.xz")) - (sha256 (base32 - "0y4v42qm66nvizjxbnixh59283a54nki51jmbrgwkhc8bkndhgld")))))) - (define-public python-3.12 (package (name "python-next")