Skip to content

Commit 463eb83

Browse files
authored
Fix CUDA wheels (#402)
PyTorch 2.7 support
1 parent 8393d94 commit 463eb83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/building.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,15 +99,15 @@ jobs:
9999
- name: Install main package for CPU
100100
if: ${{ matrix.cuda-version == 'cpu' }}
101101
run: |
102-
FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -e . --no-build-isolation
102+
FORCE_ONLY_CPU=1 WITH_METIS=1 pip install -v -e . --no-build-isolation
103103
shell:
104104
bash
105105

106106
- name: Install main package for GPU
107107
if: ${{ matrix.cuda-version != 'cpu' }}
108108
run: |
109109
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
110-
WITH_METIS=1 pip install -e . --no-build-isolation
110+
FORCE_CUDA=1 WITH_METIS=1 pip install -v -e . --no-build-isolation
111111
shell:
112112
bash
113113

0 commit comments

Comments
 (0)