Skip to content

Commit 208b0c0

Browse files
authored
README.md: Fix Python versions and update checkout action (#572)
1 parent b75a909 commit 208b0c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,17 @@ This will override any python version specifications in `pyproject.toml` and `.p
125125
- run: uv pip install --python=3.13t pip
126126
```
127127

128-
You can combine this with a matrix to test multiple python versions:
128+
You can combine this with a matrix to test multiple Python versions:
129129

130130
```yaml
131131
jobs:
132132
test:
133133
runs-on: ubuntu-latest
134134
strategy:
135135
matrix:
136-
python-version: ["3.9", "3.10", "3.11", "3.12"]
136+
python-version: ["3.10", "3.11", "3.12", "3.13"]
137137
steps:
138-
- uses: actions/checkout@v4
138+
- uses: actions/checkout@v5
139139
- name: Install the latest version of uv and set the python version
140140
uses: astral-sh/setup-uv@v6
141141
with:

0 commit comments

Comments
 (0)