diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5313660..b084b3c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,7 +28,6 @@ jobs: - name: Install the latest version of uv uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4.2.0 with: - version: "0.4.18" enable-cache: true cache-dependency-glob: pyproject.toml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7858e97..2b8625a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,6 @@ jobs: - name: Install the latest version of uv uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4.2.0 with: - version: "0.4.18" enable-cache: true cache-dependency-glob: pyproject.toml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 241ef40..9bd9605 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,15 +26,12 @@ jobs: with: persist-credentials: false - - name: Install the latest version of uv + - name: Install the latest version of uv and set the python version uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4.2.0 with: - version: "0.4.18" enable-cache: true cache-dependency-glob: pyproject.toml - - - name: Install Python ${{ matrix.python }} - run: uv python install ${{ matrix.python }} + python-version: ${{ matrix.python }} - name: test run: make test INSTALL_EXTRA=test