Skip to content

Commit

Permalink
Replace pip by uv pip
Browse files Browse the repository at this point in the history
  • Loading branch information
Smartappli authored Jun 30, 2024
1 parent 66bb31b commit e8a90d6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cd-syftcli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,20 @@ jobs:
if: ${{steps.get-hashes.outputs.current_hash != steps.get-hashes.outputs.previous_hash }}
run: |
python -m pip install --upgrade pip
pip install --upgrade tox setuptools wheel twine bump2version==1.0.1 PyYAML==6.0.1
python -p pip install uv==0.2.17
uv --version
python -m uv pip install --upgrade tox setuptools wheel twine bump2version==1.0.1 PyYAML==6.0.1
- name: Bump the Version
if: ${{steps.get-hashes.outputs.current_hash != steps.get-hashes.outputs.previous_hash }}
id: bump-version
run: |
python3 syftcli/version.py
python syftcli/version.py
bump2version patch --allow-dirty --no-commit
tox -e lint || true
echo "deployed_version=$(python3 syftcli/version.py)" >> $GITHUB_OUTPUT
python3 syftcli/version.py
python syftcli/version.py
working-directory: ./packages/syftcli

- name: Write the new hash
Expand Down

0 comments on commit e8a90d6

Please sign in to comment.