From 0cf424c11a59e35ac5d00ab690dba5f61ff61af6 Mon Sep 17 00:00:00 2001 From: James Briggs <35938317+jamescalam@users.noreply.github.com> Date: Fri, 14 Feb 2025 01:42:35 +0400 Subject: [PATCH] fix: drop old py cache --- .github/workflows/docs.yml | 2 -- .github/workflows/lint.yml | 2 -- .github/workflows/release.yml | 4 ---- .github/workflows/test.yml | 2 -- 4 files changed, 10 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 098611e9..cd565505 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -34,8 +34,6 @@ jobs: # cache: uv - name: Set up Python ${{ matrix.python-version }} run: uv venv --python 3.13 - with: - cache: uv - name: Install dependencies run: uv pip install -e .[dev] - name: Build docs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 22c19947..1333aade 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,8 +27,6 @@ jobs: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Set up Python ${{ matrix.python-version }} run: uv venv --python 3.13 - with: - cache: uv - name: Install dependencies run: uv pip install -e .[dev] - name: Analyzing the code with our lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96c8d011..0637f8ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,6 @@ jobs: - uses: actions/checkout@v2 - name: Set up Python run: uv venv --python 3.13 - with: - cache: uv - name: Install uv run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Install dependencies @@ -28,8 +26,6 @@ jobs: - uses: actions/checkout@v2 - name: Set up Python run: uv venv --python 3.13 - with: - cache: uv - name: Install uv run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Install dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7dccfac7..7b8d4c2f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,8 +44,6 @@ jobs: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Set up Python ${{ matrix.python-version }} run: uv venv --python 3.13 - with: - cache: uv # only needed for local testing # - name: Add Poetry to PATH -- GitLab