Skip to content

Commit

Permalink
Fix workflow setup-python (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaMaul authored Sep 25, 2024
1 parent 0bdb2db commit 5fa5ab2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/.github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/.github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/.github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down

0 comments on commit 5fa5ab2

Please sign in to comment.