Skip to content

Commit 5fa5ab2

Browse files
authored
Fix workflow setup-python (#32)
1 parent 0bdb2db commit 5fa5ab2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

{{cookiecutter.project_slug}}/.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/setup-python@v5
1515
with:
1616
python-version-file: pyproject.toml
17-
cache: "pip"
18-
cache-dependency-path: pyproject.toml
17+
# cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged
18+
# cache-dependency-path: pyproject.toml
1919

2020
- name: install uv
2121
run: >

{{cookiecutter.project_slug}}/.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- uses: actions/setup-python@v5
1616
with:
1717
python-version-file: pyproject.toml
18-
cache: "pip"
19-
cache-dependency-path: pyproject.toml
18+
# cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged
19+
# cache-dependency-path: pyproject.toml
2020

2121
- name: install uv
2222
run: >

{{cookiecutter.project_slug}}/.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- uses: actions/setup-python@v5
2626
with:
2727
python-version-file: pyproject.toml
28-
cache: "pip"
29-
cache-dependency-path: pyproject.toml
28+
# cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged
29+
# cache-dependency-path: pyproject.toml
3030

3131
- name: deps
3232
run: python -m pip install -U setuptools build wheel

{{cookiecutter.project_slug}}/.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python }}
25-
cache: "pip"
26-
cache-dependency-path: pyproject.toml
25+
# cache: "uv" # Wait on https://github.com/actions/setup-python/pull/818 to be merged
26+
# cache-dependency-path: pyproject.toml
2727

2828
- name: install uv
2929
run: >

0 commit comments

Comments
 (0)