Skip to content

Commit 4f6245c

Browse files
committed
update(workflows): update install on yaml workflows for wheel creation
Signed-off-by: PabloCarmona <pablocarmonagonzalez@gmail.com>
1 parent 809114e commit 4f6245c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build-wheel-310
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v**'
@@ -19,7 +20,7 @@ jobs:
1920
yum install -y openblas-devel
2021
CIBW_BEFORE_BUILD: >
2122
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
22-
&& pip install -r requirements.txt
23+
&& pip install -e .
2324
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2425
CIBW_REPAIR_WHEEL_COMMAND: >
2526
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build-wheel-311
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v**'
@@ -19,7 +20,7 @@ jobs:
1920
yum install -y openblas-devel
2021
CIBW_BEFORE_BUILD: >
2122
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
22-
&& pip install -r requirements.txt
23+
&& pip install -e .
2324
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2425
CIBW_REPAIR_WHEEL_COMMAND: >
2526
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: build-wheel-312
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v**'
@@ -19,7 +20,7 @@ jobs:
1920
yum install -y openblas-devel
2021
CIBW_BEFORE_BUILD: >
2122
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
22-
&& pip install -r requirements.txt
23+
&& pip install -e .
2324
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2425
CIBW_REPAIR_WHEEL_COMMAND: >
2526
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so

0 commit comments

Comments
 (0)