Skip to content

Commit ea6a31f

Browse files
committed
Drop support for EOL Python 3.6
1 parent 1766a94 commit ea6a31f

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,10 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
name: [
22-
"windows-py36",
22+
"windows-py37",
2323
"windows-py311",
2424
"windows-pypy3",
2525

26-
"ubuntu-py36",
2726
"ubuntu-py37-pytestmain",
2827
"ubuntu-py37",
2928
"ubuntu-py38",
@@ -38,10 +37,10 @@ jobs:
3837
]
3938

4039
include:
41-
- name: "windows-py36"
42-
python: "3.6"
40+
- name: "windows-py37"
41+
python: "3.7"
4342
os: windows-latest
44-
tox_env: "py36"
43+
tox_env: "py37"
4544
- name: "windows-py311"
4645
python: "3.10"
4746
os: windows-latest
@@ -50,11 +49,6 @@ jobs:
5049
python: "pypy3.9"
5150
os: windows-latest
5251
tox_env: "pypy3"
53-
- name: "ubuntu-py36"
54-
python: "3.6"
55-
os: ubuntu-latest
56-
tox_env: "py36"
57-
use_coverage: true
5852
- name: "ubuntu-py37-pytestmain"
5953
python: "3.7"
6054
os: ubuntu-latest

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ repos:
3939
rev: v3.2.0
4040
hooks:
4141
- id: pyupgrade
42-
args: [--py36-plus]
42+
args: [--py37-plus]

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ classifiers =
2222
Programming Language :: Python :: Implementation :: PyPy
2323
Programming Language :: Python :: 3
2424
Programming Language :: Python :: 3 :: Only
25-
Programming Language :: Python :: 3.6
2625
Programming Language :: Python :: 3.7
2726
Programming Language :: Python :: 3.8
2827
Programming Language :: Python :: 3.9
@@ -34,7 +33,7 @@ packages =
3433
pluggy
3534
install_requires =
3635
importlib-metadata>=0.12;python_version<"3.8"
37-
python_requires = >=3.6
36+
python_requires = >=3.7
3837
package_dir =
3938
=src
4039
setup_requires =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=linting,docs,py{36,37,38,39,310,311,py3},py{36,37}-pytest{main}
2+
envlist=linting,docs,py{37,38,39,310,311,py3},py{37}-pytest{main}
33

44
[testenv]
55
commands=

0 commit comments

Comments
 (0)