From 3a2ae9534299d93b036afccdb33f7a813012db16 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:38:46 +0300 Subject: [PATCH] Test Python 3.13 (#699) Co-authored-by: Ezio Melotti --- .github/workflows/ci.yml | 3 ++- tox.ini | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee30a2b66..c33e62d5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.11", "3.12"] + # remember to update the envlist in tox.ini too + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index dcbd59e78..994319c53 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{312, 311} +envlist = py{313, 312, 311} toxworkdir = {env:TOX_WORK_DIR:.tox} [testenv]