git: bf06dac94d5c - main - devel/py-rq: Update to version 1.10.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 May 2022 18:09:23 UTC
The branch main has been updated by skreuzer: URL: https://cgit.FreeBSD.org/ports/commit/?id=bf06dac94d5cfcb6b26bd2d4f3a24e44bf294d84 commit bf06dac94d5cfcb6b26bd2d4f3a24e44bf294d84 Author: Steven Kreuzer <skreuzer@FreeBSD.org> AuthorDate: 2022-05-07 17:12:55 +0000 Commit: Steven Kreuzer <skreuzer@FreeBSD.org> CommitDate: 2022-05-07 17:49:24 +0000 devel/py-rq: Update to version 1.10.1 Changes: * Failure callbacks are now properly called when job is run synchronously. * Fixes a bug that could cause job keys to be left over when result_ttl=0. * Allow ssl_cert_reqs argument to be passed to Redis. * Better compatibility with Python 3.10. * job.cancel() should also remove itself from registries. * Pubsub threads are now launched in daemon mode. PR: 263366 Reported by: Yonas Yanfa <yonas.yanfa@gmail.com> --- devel/py-rq/Makefile | 4 ++-- devel/py-rq/distinfo | 6 +++--- devel/py-rq/pkg-descr | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devel/py-rq/Makefile b/devel/py-rq/Makefile index 41e98d21ba31..549cc2ca403b 100644 --- a/devel/py-rq/Makefile +++ b/devel/py-rq/Makefile @@ -1,7 +1,7 @@ # Created by: Steven Kreuzer <skreuzer@FreeBSD.org> PORTNAME= rq -PORTVERSION= 1.3.0 +PORTVERSION= 1.10.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ COMMENT= Simple library for creating background jobs, and processing them LICENSE= BSD2CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>=2.7:databases/py-redis@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>=3.5.3:databases/py-redis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>=5.0:devel/py-click@${PY_FLAVOR} USES= python:3.6+ diff --git a/devel/py-rq/distinfo b/devel/py-rq/distinfo index b77c884e443a..7e3fac7a5e1b 100644 --- a/devel/py-rq/distinfo +++ b/devel/py-rq/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1583854674 -SHA256 (rq-1.3.0.tar.gz) = 49c9149fa9301f98d918f3042f36bed4252d37193d222a1ce8b0e25886442377 -SIZE (rq-1.3.0.tar.gz) = 50906 +TIMESTAMP = 1651943412 +SHA256 (rq-1.10.1.tar.gz) = 62d06b44c3acfa5d1933c5a4ec3fbc2484144a8af60e318d0b8447c5236271e2 +SIZE (rq-1.10.1.tar.gz) = 62151 diff --git a/devel/py-rq/pkg-descr b/devel/py-rq/pkg-descr index fae36c16cdc1..3bb2f58fc947 100644 --- a/devel/py-rq/pkg-descr +++ b/devel/py-rq/pkg-descr @@ -2,4 +2,4 @@ RQ (Redis Queue) is a simple Python library for queueing jobs and processing them in the background with workers. It is backed by Redis and it is designed to have a low barrier to entry. It can be integrated in your web stack easily. -WWW: http://python-rq.org +WWW: https://python-rq.org