From bc0272babf6b5e022df16b5bbd71dcdb096297cf Mon Sep 17 00:00:00 2001 From: romkazor Date: Sun, 10 Mar 2024 16:56:17 +0300 Subject: [PATCH] TESTS: add python 3.12 --- .github/workflows/tox.yml | 4 ++-- setup.py | 2 ++ tox.ini | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 4889dd7..1dfd16c 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [3.7, 3.8, 3.9, "3.10", "3.11"] + python: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 @@ -24,4 +24,4 @@ jobs: run: tox -e py - name: Run flake8 / docs run: tox -e flake8,docs - if: "matrix.python == '3.10' || matrix.python == '3.11'" + if: "matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'" diff --git a/setup.py b/setup.py index 3dc21cf..7c348dc 100755 --- a/setup.py +++ b/setup.py @@ -34,6 +34,8 @@ def read(*rnames): 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Communications :: Telephony', 'Topic :: Software Development :: Libraries :: Python Modules', ], diff --git a/tox.ini b/tox.ini index 0d06038..f51b921 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37,py38,py39,py310,flake8,docs +envlist = py37,py38,py39,py310,py311,py312,flake8,docs [flake8] max-line-length = 120