From 6eb1443a833599ab252c554b2d55ef1ca1eba947 Mon Sep 17 00:00:00 2001 From: turboderp <11859846+turboderp@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:47:17 +0100 Subject: [PATCH] :/ --- .github/workflows/build-wheels-release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-wheels-release.yml b/.github/workflows/build-wheels-release.yml index b4e15f1e..27e51ed6 100644 --- a/.github/workflows/build-wheels-release.yml +++ b/.github/workflows/build-wheels-release.yml @@ -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 @@ -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 @@ -177,7 +177,7 @@ jobs: } $env:EXLLAMA_NOCOMPILE=1 - python3 -m build -n + python -m build -n - uses: actions/upload-artifact@v3 with: