git: 96d4af524cb8 - main - misc/py-bitsandbytes: Fix build by adding missing dependency
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 23 Sep 2025 18:18:32 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=96d4af524cb86240948080167bf254c1a3ffa2cf commit 96d4af524cb86240948080167bf254c1a3ffa2cf Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2025-09-23 18:17:39 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2025-09-23 18:18:25 +0000 misc/py-bitsandbytes: Fix build by adding missing dependency Reported by: fallout --- misc/py-bitsandbytes/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/py-bitsandbytes/Makefile b/misc/py-bitsandbytes/Makefile index 2c0d6f9b37e4..8f3fedcab084 100644 --- a/misc/py-bitsandbytes/Makefile +++ b/misc/py-bitsandbytes/Makefile @@ -12,7 +12,8 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PY_SETUPTOOLS} \ - ${PYTHON_PKGNAMEPREFIX}scikit-build-core>0:devel/py-scikit-build-core@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}scikit-build-core>0:devel/py-scikit-build-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}pytorch>0:misc/py-pytorch@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}einops>=0.8.0:misc/py-einops@${PY_FLAVOR} \