Skip to content

Commit 9685f35

Browse files
committed
Drops 3.6 support, adds 3.11 support
1 parent 8a46d94 commit 9685f35

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/python-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10'on]
11+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
1212

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/python-tox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
11+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ def read(fname):
4949
'Topic :: Software Development :: Testing',
5050
'Programming Language :: Python',
5151
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.6',
5352
'Programming Language :: Python :: 3.7',
5453
'Programming Language :: Python :: 3.8',
5554
'Programming Language :: Python :: 3.9',
5655
'Programming Language :: Python :: 3.10',
56+
'Programming Language :: Python :: 3.11',
5757
'Programming Language :: Python :: 3 :: Only',
5858
'Programming Language :: Python :: Implementation :: CPython',
5959
'Operating System :: OS Independent',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ testpaths = tests
66

77
[gh-actions]
88
python =
9-
3.6: py36
109
3.7: py37
1110
3.8: py38,flake8
1211
3.9: py39
1312
3.10: py310
13+
3.11: py311
1414

1515
[testenv]
1616
setenv =
17-
py{36,37,38,39,310}: COVERAGE_FILE = .coverage.{envname}
17+
py{37,38,39,310,311}: COVERAGE_FILE = .coverage.{envname}
1818
commands = pytest --cov --cov-report= {posargs:-vv}
1919
deps =
2020
pytest

0 commit comments

Comments
 (0)