Skip to content

Commit ebd6b17

Browse files
authored
Merge pull request amitdev#42 from AndreMiras/feature/drop_python2.7_and_3.6
🔥 Drop Python 2.7 and 3.6 support
2 parents 3595746 + aa8dd4a commit ebd6b17

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-22.04
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-22.04
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)