git: 37393e7794f0 - main - science/py-qcengine: Fix build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 22 Jan 2024 06:56:15 UTC
The branch main has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=37393e7794f04372d047538ad6b76f9a535c387a
commit 37393e7794f04372d047538ad6b76f9a535c387a
Author: Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2024-01-22 06:54:31 +0000
Commit: Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2024-01-22 06:54:31 +0000
science/py-qcengine: Fix build
The build was broken by the py-pydantic disaster when some
ports depend on pydantic1 and some - on pydantic2,
which are 2 conflicting incompatible versions of the same
pydantic package.
Reported by: fallout
---
science/py-qcengine/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/science/py-qcengine/Makefile b/science/py-qcengine/Makefile
index c8f6ba838555..676ebde9fdc1 100644
--- a/science/py-qcengine/Makefile
+++ b/science/py-qcengine/Makefile
@@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py-cpuinfo>0:sysutils/py-py-cpuinfo@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}pydantic>=1.8.2:devel/py-pydantic@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pydantic2>=1.8.2:devel/py-pydantic2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}qcelemental>=0.24.0:science/py-qcelemental@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \