From 208b0c0ee42039b2cbf5fd3ca0ec7d6d8a49336f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 16 Sep 2025 09:59:44 +0200 Subject: [PATCH] README.md: Fix Python versions and update checkout action (#572) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9ef45c1..e89f9e7 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ This will override any python version specifications in `pyproject.toml` and `.p - run: uv pip install --python=3.13t pip ``` -You can combine this with a matrix to test multiple python versions: +You can combine this with a matrix to test multiple Python versions: ```yaml jobs: @@ -133,9 +133,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install the latest version of uv and set the python version uses: astral-sh/setup-uv@v6 with: