Skip to content

Commit 04bf887

Browse files
committed
Drop support for Python 3.6
1 parent 0f2ff42 commit 04bf887

5 files changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["pypy-3.8", "3.6", "3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["pypy-3.8", "3.7", "3.8", "3.9", "3.10"]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
include:
1717
# Include new variables for Codecov

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
repos:
22
- repo: https://github.com/asottile/pyupgrade
3-
rev: v2.29.0
3+
rev: v2.29.1
44
hooks:
55
- id: pyupgrade
6-
args: ["--py36-plus"]
6+
args: [--py37-plus]
77

88
- repo: https://github.com/psf/black
9-
rev: 21.9b0
9+
rev: 21.11b1
1010
hooks:
1111
- id: black
12-
args: ["--target-version", "py36"]
12+
args: [--target-version=py37]
1313

1414
- repo: https://github.com/PyCQA/isort
15-
rev: 5.9.3
15+
rev: 5.10.1
1616
hooks:
1717
- id: isort
1818

1919
- repo: https://github.com/PyCQA/flake8
20-
rev: 3.9.2
20+
rev: 4.0.1
2121
hooks:
2222
- id: flake8
2323
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
@@ -48,7 +48,7 @@ repos:
4848
- id: tox-ini-fmt
4949

5050
- repo: https://github.com/asottile/setup-cfg-fmt
51-
rev: v1.18.0
51+
rev: v1.20.0
5252
hooks:
5353
- id: setup-cfg-fmt
5454

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
6-
target_version = ["py36"]
6+
target_version = ["py37"]
77

88
[tool.setuptools_scm]
99
local_scheme = "no-local-version"

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers =
1717
Programming Language :: Python
1818
Programming Language :: Python :: 3
1919
Programming Language :: Python :: 3 :: Only
20-
Programming Language :: Python :: 3.6
2120
Programming Language :: Python :: 3.7
2221
Programming Language :: Python :: 3.8
2322
Programming Language :: Python :: 3.9
@@ -38,7 +37,7 @@ project_urls =
3837
packages = find:
3938
install_requires =
4039
importlib-metadata;python_version < '3.8'
41-
python_requires = >=3.6
40+
python_requires = >=3.7
4241
include_package_data = True
4342
package_dir = =src
4443
zip_safe = False

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{py3, 310, 39, 38, 37, 36}
3+
py{py3, 310, 39, 38, 37}
44

55
[testenv]
66
passenv =

0 commit comments

Comments
 (0)