git: 69c842b3c0de - 2024Q1 - science/py-qcengine: Fix build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 22 Jan 2024 06:56:35 UTC
The branch 2024Q1 has been updated by yuri:
URL: https://cgit.FreeBSD.org/ports/commit/?id=69c842b3c0de7efb3ddecf46e606aa252fcd96e0
commit 69c842b3c0de7efb3ddecf46e606aa252fcd96e0
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:56:30 +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
(cherry picked from commit 37393e7794f04372d047538ad6b76f9a535c387a)
---
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} \