Skip to content

Commit 0f3fdd5

Browse files
committed
Pin uv version to 0.8.x, test 3.13
1 parent e4d84c9 commit 0f3fdd5

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88

99
env:
1010
FORCE_COLOR: true
11+
UV_VERSION: "0.8.x"
12+
MIN_PYTHON_VERSION: "3.9"
1113

1214
concurrency:
1315
group: ${{ github.head_ref || github.run_id }}
@@ -21,15 +23,15 @@ jobs:
2123
steps:
2224
- uses: actions/checkout@v5
2325

24-
- name: Set up Python 3.9
26+
- name: Set up Python ${{ env.MIN_PYTHON_VERSION }}
2527
uses: actions/setup-python@v6
2628
with:
27-
python-version: "3.9"
29+
python-version: ${{ env.MIN_PYTHON_VERSION }}
2830

2931
- name: Set up uv
3032
uses: astral-sh/setup-uv@v7
3133
with:
32-
version: "0.6.x"
34+
version: ${{ env.UV_VERSION }}
3335
enable-cache: true
3436

3537
- name: Install dependencies
@@ -45,10 +47,10 @@ jobs:
4547
runs-on: ubuntu-latest
4648

4749
strategy:
48-
max-parallel: 4
50+
max-parallel: 5
4951
fail-fast: false
5052
matrix:
51-
python-version: ['3.9', '3.10', '3.11', '3.12']
53+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
5254

5355
steps:
5456
- uses: actions/checkout@v5
@@ -61,7 +63,7 @@ jobs:
6163
- name: Set up uv
6264
uses: astral-sh/setup-uv@v7
6365
with:
64-
version: "0.6.x"
66+
version: ${{ env.UV_VERSION }}
6567
enable-cache: true
6668

6769
- name: Install dependencies

0 commit comments

Comments
 (0)