Skip to content

Commit

Permalink
Use uv in place of pip
Browse files Browse the repository at this point in the history
  • Loading branch information
dbieber committed May 19, 2024
1 parent c9ddac1 commit 3fda8f6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[test]
python -m pip install uv
python -m uv pip install .[test]
- name: Lint with ruff
run: |
ruff .
Expand Down Expand Up @@ -51,7 +51,8 @@ jobs:
echo "Setting up Python environment"
python3 -m venv env
./env/bin/pip install -e . # Install Python dependencies
./env/bin/pip install uv
./env/bin/uv pip install -e . # Install Python dependencies
echo "Start on boot"
sudo cat /etc/rc.local
Expand Down

0 comments on commit 3fda8f6

Please sign in to comment.