Skip to content

Commit be86b88

Browse files
committed
Drop support for python 3.6 which is EOL
1 parent ae4da95 commit be86b88

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/tox.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
include:
2525
- tox_env: lint
2626
- tox_env: docs
27-
- tox_env: py36
2827
- tox_env: py37
2928
- tox_env: py38
3029
- tox_env: py39
@@ -72,10 +71,10 @@ jobs:
7271
TOXENV: packaging
7372

7473
steps:
75-
- name: Switch to using Python 3.6 by default
74+
- name: Switch to using Python 3.7 by default
7675
uses: actions/setup-python@v2
7776
with:
78-
python-version: 3.6
77+
python-version: 3.7
7978
- name: Install tox
8079
run: python -m pip install --user tox
8180
- name: Check out src from Git

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.black]
2-
target-version = ['py36']
2+
target-version = ['py37']
33
include = '\.pyi?$'
44
exclude = '''
55
(

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers =
1818
Programming Language :: Python
1919
Programming Language :: Python :: 3
2020
Programming Language :: Python :: 3 :: Only
21-
Programming Language :: Python :: 3.6
2221
Programming Language :: Python :: 3.7
2322
Programming Language :: Python :: 3.8
2423
Programming Language :: Python :: 3.9
@@ -29,7 +28,7 @@ classifiers =
2928

3029
[options]
3130
use_scm_version = True
32-
python_requires = >=3.6
31+
python_requires = >=3.7
3332
packages = find:
3433
setup_requires =
3534
setuptools_scm

0 commit comments

Comments
 (0)