Skip to content

Commit

Permalink
Switch to using uv pip for installations
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerYep committed Sep 30, 2024
1 parent 3852626 commit 0b2f837
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- uses: actions/checkout@v2
Expand All @@ -21,9 +21,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install mypy pytest pytest-cov
pip install -r requirements.txt
python -m pip install --upgrade uv
uv pip install --system mypy pytest pytest-cov
uv pip install --system -r requirements.txt
- name: mypy
run: |
mypy --install-types --non-interactive .
Expand Down

0 comments on commit 0b2f837

Please sign in to comment.