guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: python-celery: Update to 3.1.24.


From: Leo Famulari
Subject: 03/03: gnu: python-celery: Update to 3.1.24.
Date: Wed, 12 Oct 2016 17:25:36 +0000 (UTC)

lfam pushed a commit to branch core-updates
in repository guix.

commit 9ebe87fe592682b3a3ba65974a2238f14a77cda2
Author: Leo Famulari <address@hidden>
Date:   Wed Oct 12 13:22:13 2016 -0400

    gnu: python-celery: Update to 3.1.24.
    
    * gnu/packages/python.scm (python-celery, python2-celery): Update to 3.1.24.
    [arguments]: Disable some tests with break with Python 3.5.
---
 gnu/packages/python.scm |   13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index a9783b6..f1bdee2 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8498,15 +8498,24 @@ Python 2.4 and 2.5, and will draw its 
fixes/improvements from python-trunk.")
 (define-public python-celery
   (package
     (name "python-celery")
-    (version "3.1.20")
+    (version "3.1.24")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "celery" version))
        (sha256
         (base32
-         "1md6ywg1s0946qyp8ndnsd677wm0yax933h2sb4m3a4j7lf1jbyh"))))
+         "0yh2prhdnx2dgkb67a5drj12hh2zvzx5f611p7mqqg01ydghif4r"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; These tests break with Python 3.5:
+         ;; https://github.com/celery/celery/issues/2897#issuecomment-253066295
+         (replace 'check
+           (lambda _
+             (zero?
+               (system* "nosetests" "--exclude=^test_safe_to_remove.*")))))))
     (native-inputs
      `(("python-nose" ,python-nose)))
     (inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]