Skip to content

Commit aa8dd4a

Browse files
committed
🔥 Drop Python 2.7 and 3.6 support
Python 2.7 reached end of life in 2020-01-01 and 3.6 in 2021-12-23, refs: https://devguide.python.org/versions/ Add support for Python 3.11
1 parent 8bdcd75 commit aa8dd4a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", pypy-3.7, pypy-3.8, pypy-3.9]
10+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy-3.7, pypy-3.8, pypy-3.9]
1111

1212
steps:
1313
- uses: actions/checkout@v3
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
python: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", pypy-3.7, pypy-3.8, pypy-3.9]
24+
python: ["3.7", "3.8", "3.9", "3.10", "3.11", pypy-3.7, pypy-3.8, pypy-3.9]
2525

2626
steps:
2727
- uses: actions/checkout@v3

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@
2020
'Operating System :: OS Independent',
2121
'Operating System :: POSIX',
2222
'Programming Language :: C',
23-
'Programming Language :: Python :: 2',
2423
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.6',
2624
'Programming Language :: Python :: 3.7',
2725
'Programming Language :: Python :: 3.8',
2826
'Programming Language :: Python :: 3.9',
2927
'Programming Language :: Python :: 3.10',
28+
'Programming Language :: Python :: 3.11',
3029
'Programming Language :: Python :: Implementation :: CPython',
3130
'Topic :: Software Development :: Libraries :: Python Modules',
3231
],

0 commit comments

Comments
 (0)