From a70c87b9aec59ee89587df050ffb799b15cea425 Mon Sep 17 00:00:00 2001 From: Raphael Boidol Date: Sat, 14 Feb 2026 18:47:50 +0100 Subject: [PATCH] tests: check for early version of 3.15 --- .github/workflows/main.yaml | 3 ++- tox.ini | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 62e00c7..fa7f1d2 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-slim strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", "pypy-3.11"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", "3.15", "pypy-3.11"] steps: - name: Checkout uses: actions/checkout@v6 @@ -25,6 +25,7 @@ jobs: uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Cache tox environments uses: actions/cache@v5 diff --git a/tox.ini b/tox.ini index 5094429..253ab0a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] isolated_build = true -envlist = py{310,311,312,313,314,314t}-pytest{7,8,9},pypy3,check,format +envlist = py{310,311,312,313,314,314t,315}-pytest{7,8,9},pypy3,check,format [testenv] commands = pytest {posargs:tests} @@ -29,4 +29,5 @@ python = 3.13: py313 3.14: py314, check, format 3.14t: py314t + 3.15: py315 pypy-3.11: pypy3