diff --git a/{{cookiecutter.project_slug}}/.github/workflows/docs.yml b/{{cookiecutter.project_slug}}/.github/workflows/docs.yml index 836d3ae..d3cd121 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/docs.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/docs.yml @@ -14,8 +14,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: pyproject.toml - cache: "pip" - cache-dependency-path: pyproject.toml + # cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged + # cache-dependency-path: pyproject.toml - name: install uv run: > diff --git a/{{cookiecutter.project_slug}}/.github/workflows/lint.yml b/{{cookiecutter.project_slug}}/.github/workflows/lint.yml index 41faacc..6c0054e 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/lint.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/lint.yml @@ -15,8 +15,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: pyproject.toml - cache: "pip" - cache-dependency-path: pyproject.toml + # cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged + # cache-dependency-path: pyproject.toml - name: install uv run: > diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 9898a24..01690bb 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -25,8 +25,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: pyproject.toml - cache: "pip" - cache-dependency-path: pyproject.toml + # cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged + # cache-dependency-path: pyproject.toml - name: deps run: python -m pip install -U setuptools build wheel diff --git a/{{cookiecutter.project_slug}}/.github/workflows/tests.yml b/{{cookiecutter.project_slug}}/.github/workflows/tests.yml index 6641fb6..cca1815 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/tests.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/tests.yml @@ -22,8 +22,8 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} - cache: "pip" - cache-dependency-path: pyproject.toml + # cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged + # cache-dependency-path: pyproject.toml - name: install uv run: >