Skip to content

Commit 24871be

Browse files
committed
Revert "Allow installing on older minior versions of Py3.5."
This reverts commit 00e0938.
1 parent 84b5d1f commit 24871be

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ repos:
114114
hooks:
115115
- id: flake8
116116
exclude: ^(src/pytestskipmarkers/(downgraded/.*|version\.py)|\.pre-commit-hooks/.*\.py)$
117-
args:
118-
- --min-python-version=3.5.6
119117
additional_dependencies:
120118
- flake8-mypy-fork
121119
- flake8-docstrings

setup.cfg

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ include_package_data = True
3333
package_dir =
3434
=src
3535
packages = find:
36-
python_requires = >= 3.5
36+
python_requires = >= 3.5.6
3737
setup_requires =
3838
setuptools>=50.3.2
3939
setuptools_scm[toml]>=3.4
@@ -70,7 +70,6 @@ owner = root
7070
group = root
7171

7272
[flake8]
73-
min_python_version = 3.5.6
7473
max-line-length = 120
7574
exclude =
7675
# No need to traverse our git directory
@@ -116,9 +115,7 @@ ignore =
116115
# D200 One-line docstring should fit on one line with quotes
117116
D200,
118117
# W503 line break before binary operator
119-
W503,
120-
# TYP001 guard import by TYPE_CHECKING
121-
TYP001
118+
W503
122119

123120
# Additional builtins
124121
builtins =

0 commit comments

Comments
 (0)