From 8a293ea81fbdc52dbcd9769bff38b2269557bb8b Mon Sep 17 00:00:00 2001 From: ewezy Date: Mon, 23 Sep 2024 16:58:53 +0800 Subject: [PATCH] Fix invalid pip command --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1ebc95b7..7e5a345e2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: cache: pip - name: Install dependencies working-directory: ./python/sdk - run: pip install setuptools>=64,<75 setuptools_scm>=8 twine wheel + run: pip install "setuptools>=64,<75" "setuptools_scm>=8" "twine" "wheel" - name: Build and publish env: TWINE_USERNAME: ${{ secrets.pypi_username }} @@ -53,7 +53,7 @@ jobs: cache: pip - name: Install dependencies working-directory: ./python/pyfunc-server - run: pip install setuptools>=64,<75 setuptools_scm>=8 twine wheel + run: pip install "setuptools>=64,<75" "setuptools_scm>=8" "twine" "wheel" - name: Build and publish env: TWINE_USERNAME: ${{ secrets.pypi_username }} @@ -78,7 +78,7 @@ jobs: cache: pip - name: Install dependencies working-directory: ./python/batch-predictor - run: pip install setuptools>=64,<75 setuptools_scm>=8 twine wheel + run: pip install "setuptools>=64,<75" "setuptools_scm>=8" "twine" "wheel" - name: Build and publish env: TWINE_USERNAME: ${{ secrets.pypi_username }}