Skip to content

Commit bc0272b

Browse files
committed
TESTS: add python 3.12
1 parent 25c7570 commit bc0272b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/tox.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
11+
python: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v3
@@ -24,4 +24,4 @@ jobs:
2424
run: tox -e py
2525
- name: Run flake8 / docs
2626
run: tox -e flake8,docs
27-
if: "matrix.python == '3.10' || matrix.python == '3.11'"
27+
if: "matrix.python == '3.10' || matrix.python == '3.11' || matrix.python == '3.12'"

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def read(*rnames):
3434
'Programming Language :: Python :: 3.8',
3535
'Programming Language :: Python :: 3.9',
3636
'Programming Language :: Python :: 3.10',
37+
'Programming Language :: Python :: 3.11',
38+
'Programming Language :: Python :: 3.12',
3739
'Topic :: Communications :: Telephony',
3840
'Topic :: Software Development :: Libraries :: Python Modules',
3941
],

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,flake8,docs
2+
envlist = py37,py38,py39,py310,py311,py312,flake8,docs
33

44
[flake8]
55
max-line-length = 120

0 commit comments

Comments
 (0)