From 551c00a8a021356ed99a23bc0bd43831cce25581 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 14 Aug 2024 07:27:40 +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 --- .github/workflows/test_examples.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_examples.yml b/.github/workflows/test_examples.yml index 659f0549..dbabe82f 100644 --- a/.github/workflows/test_examples.yml +++ b/.github/workflows/test_examples.yml @@ -1,4 +1,4 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# This workflow will install Python dependencies, run tests, and lint with a variety of Python versions # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python name: Python package @@ -19,9 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: - python-version: '3.9' + python-version: '3.13' + allow-prereleases: true - name: Install dependencies run: | python -m pip install --upgrade pip