[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50018] [PATCH v4 07/12] gnu: python-celery: Update to 5.
From: |
Vinicius Monego |
Subject: |
[bug#50018] [PATCH v4 07/12] gnu: python-celery: Update to 5. |
Date: |
Sun, 19 Dec 2021 00:29:12 +0000 |
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
- [bug#50018] [PATCH v4 01/12] gnu: Add python-click-repl., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 04/12] gnu: Add python-pytest-rerunfailures., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 02/12] gnu: Add python-click-didyoumean., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 03/12] gnu: Add python-pytest-subtests., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 06/12] gnu: python-billiard: Update to 3.6.4.0., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 08/12] gnu: python-celery: Enable tests., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 07/12] gnu: python-celery: Update to 5.,
Vinicius Monego <=
- [bug#50018] [PATCH v4 05/12] gnu: Add python-pytest-celery., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 11/12] gnu: Remove python2-amqp., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 09/12] gnu: Remove python2-celery., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 10/12] gnu: Remove python2-kombu., Vinicius Monego, 2021/12/18
- [bug#50018] [PATCH v4 12/12] gnu: Remove python2-billiard., Vinicius Monego, 2021/12/18