From 0b2f837466a11781f4c3d89164621336e6c19b00 Mon Sep 17 00:00:00 2001 From: Tyler Yep Date: Sun, 29 Sep 2024 16:58:39 -0700 Subject: [PATCH] Switch to using uv pip for installations --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb1a4d9..08b9817 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.11"] + python-version: ["3.12"] steps: - uses: actions/checkout@v2 @@ -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 .