all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vinicius Monego <monego@posteo.net>
To: 50018@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#50018] [PATCH v4 07/12] gnu: python-celery: Update to 5.
Date: Sun, 19 Dec 2021 00:29:12 +0000	[thread overview]
Message-ID: <20211219002917.119449-7-monego@posteo.net> (raw)
In-Reply-To: <20211219002917.119449-1-monego@posteo.net>

Celery tracks major versions of python-kombu and python-vine. The latter
is also tracked by the major version of python-amqp.

* gnu/packages/python-xyz.scm (python-celery): Update to 5.1.2.
[source]: Make some cosmetic changes.
[propagated-inputs]: Add python-boto3, python-click, python-click-didyoumean,
python-click-plugins, python-click-repl, python-cryptography, python-vine.
(python-kombu): Update to 5.2.2.
[source]: Make some cosmetic changes.
[arguments]<#:phases>: Skip a problematic test file.
[native-inputs]: Order alphabetically.
[propagated-inputs]: Remove python-anyjson, python-redis. ADd
python-cachedproperty, python-vine.
(python-amqp): Update to 5.0.7.
[source]: Make some cosmetic changes.
[arguments]: Add #:tests? to skip tests.
[synopsis]: Don't break the line.
[native-inputs]: Remove python-case, python-pytest-sugar, python-mock.
(python-vine): Update to 5.0.0.
[source]: Make some cosmetic changes.
---
 gnu/packages/python-xyz.scm | 41 ++++++++++++++++++++-----------------
 1 file changed, 22 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a7493cb0ec..00a834a33a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3803,14 +3803,13 @@ provides Python-specific tags that represent an arbitrary Python object.")
 (define-public python-vine
   (package
     (name "python-vine")
-    (version "1.1.4")
+    (version "5.0.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "vine" version))
        (sha256
-        (base32
-         "0wkskb2hb494v9gixqnf4bl972p4ibcmxdykzpwjlfa5picns4aj"))))
+        (base32 "0zk3pm0g7s4qfn0gk28lfmsyplvisaxi6826cgpq5njkm4j1cfvx"))))
     (build-system python-build-system)
     (native-inputs
      (list python-pytest python-case))
@@ -13903,22 +13902,20 @@ and provides a uniform API regardless of which JSON implementation is used.")
 (define-public python-amqp
   (package
     (name "python-amqp")
-    (version "2.3.2")
+    (version "5.0.7")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "amqp" version))
        (sha256
-        (base32
-         "1sv600dgqwpimr6i1g59y9hpn50mc236gdqkr7zin13kvlpx0g87"))))
+        (base32 "0p9alyinl24z699w4gpd8wvn90sm2il1p0gfwdhbpinksy7vfmyp"))))
     (build-system python-build-system)
-    (native-inputs
-     (list python-case python-pytest-sugar python-mock))
+    (arguments
+     `(#:tests? #f)) ; not compatible with pytest>=6 as of 5.0.7
     (propagated-inputs
      (list python-vine))
     (home-page "https://github.com/celery/py-amqp")
-    (synopsis
-     "Low-level AMQP client for Python (fork of amqplib)")
+    (synopsis "Low-level AMQP client for Python (fork of amqplib)")
     (description
      "This is a fork of amqplib which was originally written by Barry Pederson.
 It is maintained by the Celery project, and used by kombu as a pure python
@@ -13964,20 +13961,25 @@ applications.")
 (define-public python-kombu
   (package
     (name "python-kombu")
-    (version "4.2.2")
+    (version "5.2.2")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "kombu" version))
        (sha256
-        (base32
-         "15k8f7mzqr049sg9vi48m19vjykviafk3f0p5xzgw9by0x0kyxjj"))))
+        (base32 "0256915q3z4pjrkqxw16a31np3p25dxnk1mq2zv0hs4izdihfp8g"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'delete-transport-tests
+           (lambda _ ; this tests message passing to many different databases
+             (delete-file-recursively "t/unit/transport"))))))
     (native-inputs
-     (list python-mock python-case python-pyro4 python-pytest-sugar
+     (list python-case python-mock python-pyro4 python-pytest-sugar
            python-pytz))
     (propagated-inputs
-     (list python-anyjson python-amqp python-redis))
+     (list python-amqp python-cached-property python-vine))
     (home-page "https://kombu.readthedocs.io")
     (synopsis "Message passing library for Python")
     (description "The aim of Kombu is to make messaging in Python as easy as
@@ -14045,14 +14047,13 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
 (define-public python-celery
   (package
     (name "python-celery")
-    (version "4.2.1")
+    (version "5.1.2") ; newer versions require python-click>=8
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "celery" version))
        (sha256
-        (base32
-         "0y66rz7z8dfcgs3s0qxmdddlaq57bzbgxgfz896nbp14grkv9nkp"))))
+        (base32 "1c6lw31i3v81fyj4yn37lbvv70xdgb389iccirzyjr992vlkv6ld"))))
     (build-system python-build-system)
     (arguments
      '(;; TODO The tests fail with Python 3.7
@@ -14069,7 +14070,9 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
     (native-inputs
      (list python-case python-pytest))
     (propagated-inputs
-     (list python-pytz python-billiard python-kombu))
+     (list python-billiard python-boto3 python-click python-click-didyoumean
+           python-click-plugins python-click-repl python-cryptography
+           python-kombu python-pytz python-vine))
     (home-page "https://celeryproject.org")
     (synopsis "Distributed Task Queue")
     (description "Celery is an asynchronous task queue/job queue based on
-- 
2.30.2





  parent reply	other threads:[~2021-12-19  0:31 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-11 23:43 [bug#50018] [PATCH 00/19] Update Celery to version 5 Vinicius Monego
2021-08-11 23:44 ` [bug#50018] [PATCH 01/19] gnu: Add python-click-repl Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 02/19] gnu: Add python-click-didyoumean Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 03/19] gnu: Add python-pytest-subtests Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 04/19] gnu: python-aws-sam-translator: Update to 1.38.0 Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 05/19] gnu: python-aws-sam-translator: Change source for tests Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 06/19] gnu: python-cfn-lint: Update to 0.53.0 Vinicius Monego
2021-08-11 23:44   ` [bug#50018] [PATCH 07/19] gnu: python-cfn-lint: Respect #:tests? Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 08/19] gnu: python-moto: Update to 2.2.2 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 09/19] gnu: python-moto: Respect #:tests? Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 10/19] gnu: python-vine: Update to 5.0.0 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 11/19] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 12/19] gnu: python-amqp: Update to 5.0.6 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 13/19] gnu: python-kombu: Update to 5.1.0 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 14/19] gnu: Add python-pytest-celery Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 15/19] gnu: python-celery: Update to 5.1.2 Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 16/19] gnu: python-celery: Enable tests Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 17/19] gnu: Remove python2-celery Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 18/19] gnu: Remove python2-kombu Vinicius Monego
2021-08-11 23:45   ` [bug#50018] [PATCH 19/19] gnu: Remove python2-amqp Vinicius Monego
2021-08-13 22:45 ` [bug#50018] [PATCH v2 16/19] gnu: python-celery: Enable tests Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 17/19] gnu: Remove python2-celery Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 18/19] gnu: Remove python2-kombu Vinicius Monego
2021-08-13 22:45   ` [bug#50018] [PATCH v2 19/19] gnu: Remove python2-amqp Vinicius Monego
2021-09-16 16:20 ` [bug#50018] [PATCH v3 00/21] Update Celery to version 5 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 01/21] gnu: Add python-click-repl Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 02/21] gnu: Add python-click-didyoumean Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 03/21] gnu: Add python-pytest-subtests Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 04/21] gnu: python-cfn-lint: Respect #:tests? Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 05/21] gnu: python-botocore: Update to 1.21.42 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 06/21] gnu: python-s3transfer: Update to 0.5.0 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 07/21] gnu: python-boto3: Update to 1.18.42 Vinicius Monego
2021-09-16 16:20   ` [bug#50018] [PATCH v3 08/21] gnu: awscli: Update to 1.20.42 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 09/21] gnu: python-aws-sam-translator: Change source for tests Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 10/21] gnu: python-moto: Update to 2.2.7 Vinicius Monego
2021-09-26 17:08     ` Maxime Devos
2021-09-16 16:21   ` [bug#50018] [PATCH v3 11/21] gnu: python-moto: Respect #:tests? Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 12/21] gnu: python-vine: Update to 5.0.0 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 13/21] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 14/21] gnu: python-amqp: Update to 5.0.6 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 15/21] gnu: python-kombu: Update to 5.1.0 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 16/21] gnu: Add python-pytest-celery Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 17/21] gnu: python-celery: Update to 5.1.2 Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 18/21] gnu: python-celery: Enable tests Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 19/21] gnu: Remove python2-celery Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 20/21] gnu: Remove python2-kombu Vinicius Monego
2021-09-16 16:21   ` [bug#50018] [PATCH v3 21/21] gnu: Remove python2-amqp Vinicius Monego
2021-10-25 20:00 ` [bug#50018] [PATCH v3 10/21] gnu: python-moto: Update to 2.2.7 Vinicius Monego
2021-12-19  0:29 ` [bug#50018] [PATCH v4 01/12] gnu: Add python-click-repl Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 02/12] gnu: Add python-click-didyoumean Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 03/12] gnu: Add python-pytest-subtests Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 04/12] gnu: Add python-pytest-rerunfailures Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 05/12] gnu: Add python-pytest-celery Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 06/12] gnu: python-billiard: Update to 3.6.4.0 Vinicius Monego
2021-12-19  0:29   ` Vinicius Monego [this message]
2021-12-19  0:29   ` [bug#50018] [PATCH v4 08/12] gnu: python-celery: Enable tests Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 09/12] gnu: Remove python2-celery Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 10/12] gnu: Remove python2-kombu Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 11/12] gnu: Remove python2-amqp Vinicius Monego
2021-12-19  0:29   ` [bug#50018] [PATCH v4 12/12] gnu: Remove python2-billiard Vinicius Monego
2021-12-26 23:10 ` bug#50018: [PATCH 00/19] Update Celery to version 5 Nicolas Goaziou
2021-12-26 23:39   ` [bug#50018] " Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211219002917.119449-7-monego@posteo.net \
    --to=monego@posteo.net \
    --cc=50018@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.