summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-08 10:53:25 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-08 10:57:22 +0100
commitccdfb44b8568b706ed3ace699697634165b5416d (patch)
tree0d5c82b9459bd6c89eff21fafe296ec60b9d7421 /.flake8
parent99017c50ac52a9ed2946ffee888ac2235f835bbd (diff)
downloadqutebrowser-ccdfb44b8568b706ed3ace699697634165b5416d.tar.gz
qutebrowser-ccdfb44b8568b706ed3ace699697634165b5416d.zip
Drop support for Python 3.6.0
It has some subtle typing differences compared to 3.6.1, see e.g. https://docs.python.org/3/library/typing.html#typing.NamedTuple Also, we can't easily test it, it's unlikely to be in use anywhere anyways, and various dependencies already dropped support for it or are going to (e.g. PyQt 6). See #4800
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index 7709eacaf..9331484c3 100644
--- a/.flake8
+++ b/.flake8
@@ -50,7 +50,7 @@ ignore =
A003,
W503, W504
FI15
-min-version = 3.6.0
+min-version = 3.6.1
max-complexity = 12
per-file-ignores =
qutebrowser/api/hook.py : N801