Skip to content

Commit

Permalink
Allow installing on older minior versions of Py3.5.
Browse files Browse the repository at this point in the history
Looking at you Debian.

Fixes #10

Signed-off-by: Pedro Algarvio <[email protected]>
  • Loading branch information
s0undt3ch committed Feb 5, 2022
1 parent d121f7e commit 00e0938
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ repos:
hooks:
- id: flake8
exclude: ^(src/pytestskipmarkers/(downgraded/.*|version\.py)|\.pre-commit-hooks/.*\.py)$
args:
- --min-python-version=3.5.6
additional_dependencies:
- flake8-mypy-fork
- flake8-docstrings
Expand Down
1 change: 1 addition & 0 deletions changelog/10.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow installing on older minior versions of Py3.5. Looking at you Debian.
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ include_package_data = True
package_dir =
=src
packages = find:
python_requires = >= 3.5.6
python_requires = >= 3.5
setup_requires =
setuptools>=50.3.2
setuptools_scm[toml]>=3.4
Expand Down Expand Up @@ -70,6 +70,7 @@ owner = root
group = root

[flake8]
min_python_version = 3.5.6
max-line-length = 120
exclude =
# No need to traverse our git directory
Expand Down Expand Up @@ -115,7 +116,9 @@ ignore =
# D200 One-line docstring should fit on one line with quotes
D200,
# W503 line break before binary operator
W503
W503,
# TYP001 guard import by TYPE_CHECKING
TYP001

# Additional builtins
builtins =
Expand Down

0 comments on commit 00e0938

Please sign in to comment.