Skip to content

Commit 19f768b

Browse files
committed
Remove py3.6 support; add py3.11 support
1 parent 2f02c01 commit 19f768b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/ci_python_compatibility.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
9+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1010

1111
steps:
1212
- name: Check out the source code

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'Programming Language :: Python :: 3.9',
3636
'Programming Language :: Python :: 3.10',
3737
],
38+
python_requires='>=3.7, <4',
3839
test_suite='tests',
3940
install_requires=[
4041
'ruamel.yaml<=0.16.12',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310
2+
envlist = py37, py38, py39, py310, py311
33
skip_missing_interpreters = true
44

55
[testenv]
@@ -16,11 +16,11 @@ commands =
1616

1717
[gh-actions]
1818
python =
19-
3.6: py36
2019
3.7: py37
2120
3.8: py38
2221
3.9: py39
2322
3.10: py310
23+
3.11: py311
2424

2525
[pycodestyle]
2626
max-doc-length = 80

0 commit comments

Comments
 (0)