Skip to content

Commit eddf785

Browse files
committed
fix(workflows/build): change before build from install editable mode package to project deps
Signed-off-by: Pablo Carmona Gonzalez <pablocarmonagonzalez@gmail.com>
1 parent 3b3f262 commit eddf785

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/build-wheel-310.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,20 @@ jobs:
1818
CIBW_BUILD: cp310-manylinux_x86_64
1919
CIBW_BEFORE_ALL: >
2020
yum install -y openblas-devel
21-
CIBW_BEFORE_BUILD: >
22-
pip install -e .
21+
CIBW_BEFORE_BUILD: |
22+
pip install \
23+
"cmake>=4.2.1" \
24+
"scikit-build>=0.18.1" \
25+
scikit-learn \
26+
"pybind11>=3.0.1" \
27+
"torch>=2.9.1" \
28+
torchvision \
29+
scipy \
30+
"requests>=2.32,<3" \
31+
numpy \
32+
protobuf \
33+
tqdm \
34+
mypy
2335
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2436
CIBW_REPAIR_WHEEL_COMMAND: >
2537
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so

0 commit comments

Comments
 (0)