From 07604c838746721704b3bd05adcb41d56200404a Mon Sep 17 00:00:00 2001 From: Seth Morton Date: Mon, 27 Feb 2023 00:54:49 -0800 Subject: Add explicit support for python 3.11 --- .github/workflows/tests.yml | 2 +- setup.cfg | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2184dda..34fa9d2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] os: [ubuntu-latest] extras: [false] include: diff --git a/setup.cfg b/setup.cfg index 786d32f..3b9bf94 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,6 +29,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 :: Information Analysis Topic :: Utilities Topic :: Text Processing diff --git a/tox.ini b/tox.ini index 210d06e..d6a2d98 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ [tox] envlist = - flake8, mypy, py37, py38, py39, py310 + flake8, mypy, py37, py38, py39, py310, py311 # Other valid environments are: # docs # release @@ -109,3 +109,4 @@ python = 3.8: py38 3.9: py39 3.10: py310 + 3.11: py311 -- cgit v1.2.1