From c9c4e3d377548cf7fa0fffe7629fdc14c203c88b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 13 Aug 2024 19:54:16 +0200 Subject: [PATCH] Run tests on Python 3.13 release candidate --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c373d7..8fb4be2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,9 @@ jobs: build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', 'pypy-3.9'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.10'] steps: - uses: actions/checkout@v4 @@ -21,6 +22,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - uses: actions/cache@v4 with: path: ~/.cache/pip @@ -32,11 +34,11 @@ jobs: python -m pip install tox tox-gh-actions sudo apt-get install libmemcached-dev - name: Lint - if: matrix.python-version == '3.10' + if: matrix.python-version == '3.12' run: | tox -e lint,mypy - name: Docs - if: matrix.python-version == '3.10' + if: matrix.python-version == '3.12' run: | tox -e docs - name: Disable IPv6 localhost