We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b75a909 commit 208b0c0Copy full SHA for 208b0c0
1 file changed
README.md
@@ -125,17 +125,17 @@ This will override any python version specifications in `pyproject.toml` and `.p
125
- run: uv pip install --python=3.13t pip
126
```
127
128
-You can combine this with a matrix to test multiple python versions:
+You can combine this with a matrix to test multiple Python versions:
129
130
```yaml
131
jobs:
132
test:
133
runs-on: ubuntu-latest
134
strategy:
135
matrix:
136
- python-version: ["3.9", "3.10", "3.11", "3.12"]
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
137
steps:
138
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
139
- name: Install the latest version of uv and set the python version
140
uses: astral-sh/setup-uv@v6
141
with:
0 commit comments