From ea6163f010c644796948650d2b67b7c181623535 Mon Sep 17 00:00:00 2001 From: Jan-Lukas Wynen Date: Fri, 25 Nov 2022 09:24:16 +0100 Subject: [PATCH] Use Python 3.11 in CI --- .github/workflows/ci.yml | 1 + pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 976c829a..c586d314 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,7 @@ jobs: strategy: matrix: include: + - {python: '3.11', os: ubuntu-20.04, tox: py311-backend} - {python: '3.10', os: ubuntu-20.04, tox: py310-backend} - {python: '3.9', os: ubuntu-20.04, tox: py39-backend} - {python: '3.8', os: ubuntu-20.04, tox: py38-backend} diff --git a/pyproject.toml b/pyproject.toml index ce245227..bce34c8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering", "Typing :: Typed", ] diff --git a/tox.ini b/tox.ini index 19eff6e3..32571567 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310}-backend +envlist = py{38,39,310,311}-backend isolated_build = true [testenv]