Skip to content

Commit f81ac30

Browse files
committed
updates to setup-uv
1 parent 052278c commit f81ac30

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ jobs:
2121
- uses: actions/checkout@v4
2222

2323
- name: Install uv and Python ${{ env.python-version }}
24-
uses: astral-sh/setup-uv@v5
24+
uses: astral-sh/setup-uv@v6
2525
with:
2626
python-version: ${{ env.python-version }}
2727
enable-cache: true
28+
activate-environment: true
2829
cache-dependency-glob: pyproject.toml
2930

3031
- name: Install package with test dependencies

.github/workflows/cron.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26-
- name: Install uv and Python ${{ env.python-version }}
27-
uses: astral-sh/setup-uv@v5
26+
- name: Install uv and Python ${{ matrix.python-version }}
27+
uses: astral-sh/setup-uv@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
enable-cache: true
31+
activate-environment: true
3132
cache-dependency-glob: pyproject.toml
3233

3334
- name: Install package with test dependencies

.github/workflows/documentation.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
documentation:
1616
runs-on: ubuntu-latest
1717
env:
18-
python-version: "3.12"
18+
python-version: "3.13"
1919

2020
steps:
2121
- uses: actions/checkout@v4
@@ -30,10 +30,11 @@ jobs:
3030
run: sudo apt-get install -y optipng dvipng cm-super
3131

3232
- name: Install uv and Python ${{ env.python-version }}
33-
uses: astral-sh/setup-uv@v5
33+
uses: astral-sh/setup-uv@v6
3434
with:
3535
python-version: ${{ env.python-version }}
3636
enable-cache: true
37+
activate-environment: true
3738
cache-dependency-glob: pyproject.toml
3839

3940
- name: Install package with test dependencies

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ jobs:
2020
- uses: actions/checkout@v4
2121

2222
- name: Install uv and Python ${{ env.python-version }}
23-
uses: astral-sh/setup-uv@v5
23+
uses: astral-sh/setup-uv@v6
2424
with:
2525
python-version: ${{ env.python-version }}
2626
enable-cache: true
27+
activate-environment: true
2728
cache-dependency-glob: pyproject.toml
2829

2930
- name: Build wheels and sdist

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525

26-
- name: Install uv and Python ${{ env.python-version }}
27-
uses: astral-sh/setup-uv@v5
26+
- name: Install uv and Python ${{ matrix.python-version }}
27+
uses: astral-sh/setup-uv@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
enable-cache: true
31+
activate-environment: true
3132
cache-dependency-glob: pyproject.toml
3233

3334
- name: Install package with test dependencies

0 commit comments

Comments
 (0)