From 44a8651caf2181bcbb62b080355b984a87c23db7 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 14 Aug 2024 07:11:16 +0200 Subject: [PATCH] Run tests on Python 3.13 release candidate * https://www.python.org/download/pre-releases * https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#allow-pre-releases Blocked by: * python-greenlet/greenlet#396 Signed-off-by: Christian Clauss --- .github/workflows/test-python.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-python.yml b/.github/workflows/test-python.yml index e4f2487d3..5f38c81de 100644 --- a/.github/workflows/test-python.yml +++ b/.github/workflows/test-python.yml @@ -25,12 +25,13 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: pyproject.toml + allow-prereleases: true - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3