Skip to content

Commit 2f19fef

Browse files
committed
update(workflows): remove fixed pytorch install and update cibuildwheel
Signed-off-by: Pablo Carmona Gonzalez <pablocarmonagonzalez@gmail.com>
1 parent 4f6245c commit 2f19fef

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
CIBW_BEFORE_ALL: >
2020
yum install -y openblas-devel
2121
CIBW_BEFORE_BUILD: >
22-
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
23-
&& pip install -e .
22+
pip install -e .
2423
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2524
CIBW_REPAIR_WHEEL_COMMAND: >
2625
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
CIBW_BEFORE_ALL: >
2020
yum install -y openblas-devel
2121
CIBW_BEFORE_BUILD: >
22-
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
23-
&& pip install -e .
22+
pip install -e .
2423
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2524
CIBW_REPAIR_WHEEL_COMMAND: >
2625
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so
@@ -31,7 +30,7 @@ jobs:
3130
run: docker pull $CIBW_MANYLINUX_X86_64_IMAGE
3231

3332
- name: Install cibuildwheel
34-
run: python -m pip install cibuildwheel==2.23.3
33+
run: python -m pip install cibuildwheel==3.3.1
3534

3635
- name: Build wheels
3736
run: python -m cibuildwheel --output-dir wheelhouse

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
CIBW_BEFORE_ALL: >
2020
yum install -y openblas-devel
2121
CIBW_BEFORE_BUILD: >
22-
pip install torch==2.9.0 torchvision==0.24.0 torchaudio==2.9.0 --index-url https://download.pytorch.org/whl/cpu
23-
&& pip install -e .
22+
pip install -e .
2423
CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
2524
CIBW_REPAIR_WHEEL_COMMAND: >
2625
auditwheel repair -w {dest_dir} {wheel} --exclude libtorch_python.so
@@ -31,7 +30,7 @@ jobs:
3130
run: docker pull $CIBW_MANYLINUX_X86_64_IMAGE
3231

3332
- name: Install cibuildwheel
34-
run: python -m pip install cibuildwheel==2.23.3
33+
run: python -m pip install cibuildwheel==3.3.1
3534

3635
- name: Build wheels
3736
run: python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)