git: 774f71eb32eb - main - devel/nox: Fix version requirement of RUN_DEPENDS
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Jul 2023 21:47:05 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=774f71eb32ebc3153e8fda5c3c0aaa8ab4eb3c32
commit 774f71eb32ebc3153e8fda5c3c0aaa8ab4eb3c32
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-07-09 21:30:55 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-07-09 21:36:21 +0000
devel/nox: Fix version requirement of RUN_DEPENDS
from pyproject.toml:
"argcomplete<4.0,>=1.9.4",
Approved by: portmgr (blanket)
Reference: https://github.com/wntrblm/nox/blob/2023.04.22/pyproject.toml#L43
---
devel/nox/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/devel/nox/Makefile b/devel/nox/Makefile
index 5fb69f761a03..b2e57983a3cc 100644
--- a/devel/nox/Makefile
+++ b/devel/nox/Makefile
@@ -10,7 +10,7 @@ WWW= https://nox.thea.codes/en/stable/
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
-PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argcomplete>=1.9.4<3.0:devel/py-argcomplete@${PY_FLAVOR} \
+PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argcomplete>=1.9.4<4.0:devel/py-argcomplete@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}colorlog>=2.6.1<7.0.0:devel/py-colorlog@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}packaging>=20.9:devel/py-packaging@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}virtualenv>=14:devel/py-virtualenv@${PY_FLAVOR}