Skip to content

Commit

Permalink
chore(ci): uv works differently when called via "python -m uv"
Browse files Browse the repository at this point in the history
  • Loading branch information
achimnol committed Feb 18, 2024
1 parent 7e44346 commit 5305db4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5305db4

Please sign in to comment.