Skip to content

Commit aadcc1f

Browse files
committed
drop python3.6, it EOL'd 7 months ago
Not that it wouldn't work still realistically, but I have no-to-negative desire to support EOL'd stuff
1 parent 4d162ac commit aadcc1f

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
12+
python-version: ['3.7', '3.8', '3.9', '3.10']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Setup Python
@@ -28,7 +28,7 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
os: [ubuntu-latest, macos-latest, windows-latest]
31-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
31+
python-version: ['3.7', '3.8', '3.9', '3.10']
3232
steps:
3333
- uses: actions/checkout@v2
3434
- name: Setup Python

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ classifiers =
1919
Operating System :: OS Independent
2020
Programming Language :: Python
2121
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.6
2322
Programming Language :: Python :: 3.7
2423
Programming Language :: Python :: 3.8
2524
Programming Language :: Python :: 3.9
@@ -37,7 +36,7 @@ keyword =
3736
zip_safe = False
3837
include_package_data = True
3938
packages = find:
40-
python_requires = >=3.6
39+
python_requires = >=3.7
4140
4241
[options.extras_require]
4342
regex =

0 commit comments

Comments
 (0)