andreas pushed a commit to branch python-team
in repository guix.

commit 303f7ced333ab5de8b5311a13a7b1418a13dd82b
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 10 03:16:15 2025 +0100

    gnu: Remove python-django-3.2.
    
    * gnu/packages/django.scm (python-django-3.2): Delete variable.
    
    Change-Id: Iebc9809999473c2f99d35a78aba8f3f8fbf6b14e
    Signed-off-by: Steve George <[email protected]>
---
 gnu/packages/django.scm | 20 ++------------------
 1 file changed, 2 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 44d47b39ab..470e3894eb 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -148,26 +148,10 @@ to the @dfn{don't repeat yourself} (DRY) principle.")
                   ;; This CVE seems fixed since 4.2.1.
                   (lint-hidden-cve . ("CVE-2023-31047"))))))
 
-(define-public python-django-3.2
-  (package
-    (inherit python-django-4.2)
-    (version "3.2.21")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "Django" version))
-              (sha256
-               (base32
-                "0g3zm2glh76g31q06g6fwkwvkrphjj3mnap5sgk1hx3v9r44rpm5"))))
-    (native-search-paths '())           ;no need for TZDIR
-    (propagated-inputs
-     (modify-inputs (package-propagated-inputs python-django-4.2)
-       ;; Django 4.0 deprecated pytz in favor of Pythons built-in zoneinfo.
-       (append python-pytz)))))
-
 ;; archivebox requires django>=3.1.3,<3.2
 (define-public python-django-3.1.14
   (package
-    (inherit python-django-3.2)
+    (inherit python-django-4.2)
     (version "3.1.14")
     (source (origin
               (method url-fetch)
@@ -176,7 +160,7 @@ to the @dfn{don't repeat yourself} (DRY) principle.")
                (base32
                 "0ix3v2wlnplv78zxjrlw8z3hiap2d5mxvk0ny2fc65526shsb93j"))))
     (propagated-inputs
-     (modify-inputs (package-propagated-inputs python-django-3.2)
+     (modify-inputs (package-propagated-inputs python-django-4.2)
        ;; Django 4.0 deprecated pytz in favor of Pythons built-in zoneinfo.
        (append python-pytz)))))
 

Reply via email to