diff options
author | Matthew Seaman <matthew@FreeBSD.org> | 2021-05-18 17:34:03 +0000 |
---|---|---|
committer | Matthew Seaman <matthew@FreeBSD.org> | 2021-05-18 17:37:10 +0000 |
commit | 31ac02bd2729f5701ff471453720e90c9e5d3e48 (patch) | |
tree | 8259f06a6b8ee816b49d5630fb0aee59185004c5 | |
parent | 1d5b7c913b1c41f208ac96ccf898296200f22fcc (diff) |
sysutils/py-hcloud -- fix dependency versions
This removes one impediment to the pending update of www/py-requests
PR: 250941
-rw-r--r-- | sysutils/py-hcloud/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sysutils/py-hcloud/Makefile b/sysutils/py-hcloud/Makefile index 645933f1945a..b2aa47530364 100644 --- a/sysutils/py-hcloud/Makefile +++ b/sysutils/py-hcloud/Makefile @@ -1,5 +1,6 @@ PORTNAME= hcloud DISTVERSION= 1.12.0 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,15 +11,15 @@ COMMENT= Official Hetzner Cloud python library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.5,<2.9:devel/py-dateutil@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=2.20,<2.23:www/py-requests@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>=0.17.1<1:devel/py-future@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.7.5,<3:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.20,<3:www/py-requests@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flake8>=3.6.0:devel/py-flake8@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isort>=4.3.4:devel/py-isort@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>=2.0.0:devel/py-mock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pytest>=3.10.0:devel/py-pytest@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tox>=3.5.3:devel/py-tox@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tox>=3.23.1:devel/py-tox@${PY_FLAVOR} NO_ARCH= yes USES= python:3.6+ |