From 630d3fa89560602f0bd45ebaa25cced91afba37c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Mon, 24 Jun 2024 18:54:02 +0200 Subject: [PATCH] Test with Python 3.13 --- .github/workflows/ci.yaml | 2 ++ tox.ini | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b0e3c02..c5770d1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -30,6 +30,8 @@ jobs: tox: py312,py312-trio - python: "3.12" tox: pep8 + - python: "3.13" + tox: py313 - python: "3.11" tox: mypy steps: diff --git a/tox.ini b/tox.ini index 14f8ae0..74edc4f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{8,9,10,11,12,12-trio}, pep8, pypy3 +envlist = py3{8,9,10,11,12,12-trio,13}, pep8, pypy3 skip_missing_interpreters = True [testenv] @@ -10,9 +10,9 @@ deps = .[doc] trio: trio commands = - py3{8,9,10,11,12},pypy3: pytest {posargs} - py3{8,9,10,11,12},pypy3: sphinx-build -a -E -W -b doctest doc/source doc/build - py3{8,9,10,11,12},pypy3: sphinx-build -a -E -W -b html doc/source doc/build + py3{8,9,10,11,12,13},pypy3: pytest {posargs} + py3{8,9,10,11,12,13},pypy3: sphinx-build -a -E -W -b doctest doc/source doc/build + py3{8,9,10,11,12,13},pypy3: sphinx-build -a -E -W -b html doc/source doc/build [testenv:pep8] basepython = python3