1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

databases/py-dbt-semantic-interfaces: Fix build by correcting dependency

This fails:
RUN_DEPENDS=   ${PYTHON_PKGNAMEPREFIX}pydantic>=1.10,<2,1:devel/py-pydantic@${PY_FLAVOR}

That's probably because pydantic has comma in its version and it isn't properly handled:
py39-pydantic-1.10.13,1

Approved by:	portmgr (unbreak)
This commit is contained in:
Yuri Victorovich 2024-01-11 16:04:17 -08:00
parent 5099cab651
commit dc1f6bd068

View File

@ -14,7 +14,7 @@ LICENSE= APACHE20
BUILD_DEPENDS= hatch:devel/py-hatch@${PY_FLAVOR} \
hatchling:devel/py-hatchling@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pydantic>=1.10,<2,1:devel/py-pydantic@${PY_FLAVOR} \
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pydantic>=1.10:devel/py-pydantic@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}jsonschema>=4,<5:devel/py-jsonschema@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>=6,<7:devel/py-yaml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}more-itertools>=8,<11:devel/py-more-itertools@${PY_FLAVOR} \