git: 4ec13356ca0e - main - databases/py-schemachange: Fix RUN_DEPENDS usage
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 08 Sep 2024 18:56:06 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=4ec13356ca0e992f7a253f0ea6f26faf5c329044 commit 4ec13356ca0e992f7a253f0ea6f26faf5c329044 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-09-08 18:35:25 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-09-08 18:40:26 +0000 databases/py-schemachange: Fix RUN_DEPENDS usage Approved by: portmgr (blanket) With hat: python --- databases/py-schemachange/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/databases/py-schemachange/Makefile b/databases/py-schemachange/Makefile index 4014049e60e1..f47df788f0d6 100644 --- a/databases/py-schemachange/Makefile +++ b/databases/py-schemachange/Makefile @@ -23,10 +23,10 @@ TEST_DEPENDS= ${PY_DEPENDS} \ USES= python USE_PYTHON= autoplist concurrent pep517 -PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=3.0,<4:devel/py-Jinja2@${PY_FLAVOR} \ +PY_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=3.0<4:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pandas>=1.3:math/py-pandas@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyyaml>=6.0,<7:devel/py-pyyaml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}snowflake-connector-python>=2.8,<4:databases/py-snowflake-connector-python@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pyyaml>=6.0<7:devel/py-pyyaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}snowflake-connector-python>=2.8<4:databases/py-snowflake-connector-python@${PY_FLAVOR} do-test: @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest)