Skip to content

Commit

Permalink
:/
Browse files Browse the repository at this point in the history
  • Loading branch information
turboderp committed Jan 22, 2024
1 parent 4af6879 commit 6eb1443
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-wheels-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ jobs:
if (!(mamba list cuda)[-1].contains('cuda')) {throw 'CUDA Toolkit failed to install!'}
if ([version]$env:CUDAVER -lt [version]'11.8.0') {$torchver = "torch==2.0.1"} else {$torchver = "torch==2.1.0"}
python3 -m pip install $torchver --index-url https://download.pytorch.org/whl/cu$cudaVersionPytorch
python -m pip install $torchver --index-url https://download.pytorch.org/whl/cu$cudaVersionPytorch
pip3 install --upgrade setuptools==65.5.1
pip3 install --upgrade build wheel safetensors sentencepiece ninja
python -m pip3 install --upgrade setuptools==65.5.1
python -m pip3 install --upgrade build wheel safetensors sentencepiece ninja
- name: Build Wheel
id: build-wheel
Expand Down Expand Up @@ -160,8 +160,8 @@ jobs:

- name: Install Dependencies
run: |
python3 -m pip install torch==2.1.0 --index-url https://download.pytorch.org/whl/cpu
python3 -m pip install build wheel ninja
python -m pip install torch==2.1.0 --index-url https://download.pytorch.org/whl/cpu
python -m pip install build wheel ninja
- name: Build Wheel
id: build-wheel-sdist
Expand All @@ -177,7 +177,7 @@ jobs:
}
$env:EXLLAMA_NOCOMPILE=1
python3 -m build -n
python -m build -n
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 6eb1443

Please sign in to comment.