From 370b9151b6ae3e23675c1a7566d8f09402beb3d6 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 13 Nov 2022 19:57:28 +0000 Subject: [PATCH] Add Python 3.11 to build --- .github/workflows/tests.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 06396f9..1681f91 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: matrix: # TODO: add windows-latest os: [ubuntu-latest, macos-latest] - python: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.9'] + python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9'] fail-fast: false runs-on: ${{ matrix.os }} steps: diff --git a/tox.ini b/tox.ini index 87c220c..29a5c47 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist=flake8,py36,py37,py38,py39,py310,pypy3,docs +envlist=flake8,py36,py37,py38,py39,py310,py311,pypy3,docs skip_missing_interpreters=True [gh-actions] @@ -9,6 +9,7 @@ python = 3.8: py38 3.9: py39 3.10: py310 + 3.11: py311 pypy-3: pypy3 [testenv]