diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2716293..8559edc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,8 +33,8 @@ jobs: echo "VIRTUAL_ENV=${Python_ROOT_DIR}" >> $GITHUB_ENV # for uv to use the global interpreter - name: Install dependencies run: | - python -m pip install -U uv - python -m uv pip install -U -e '.[test]' + pip install -U uv + uv pip install -U -e '.[test]' - name: Build the proxy run: | cd src/qedis-proxy @@ -80,8 +80,8 @@ jobs: echo "VIRTUAL_ENV=${Python_ROOT_DIR}" >> $GITHUB_ENV # for uv to use the global interpreter - name: Install dependencies run: | - python -m pip install -U uv - python -m uv pip install -U -e '.[build]' + pip install -U uv + uv pip install -U -e '.[build]' - name: Build sdist and wheel run: | python -m build -s -w