From 685a66280aff600a83aa30da814aea63f0116c31 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 26 Oct 2020 13:51:12 +0100 Subject: Initial drop of Python 3.5 See #4800 --- .flake8 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index e913647f9..573d0856f 100644 --- a/.flake8 +++ b/.flake8 @@ -38,6 +38,7 @@ exclude = .*,__pycache__,resources.py # D413: Missing blank line after last section (not in pep257?) # A003: Builtin name for class attribute (needed for overridden methods) # W504: line break after binary operator +# FI15: __future__ import "generator_stop" missing ignore = B001,B008,B305, E128,E226,E265,E501,E402,E266,E722,E731, @@ -46,8 +47,9 @@ ignore = P101,P102,P103, D102,D103,D106,D107,D104,D105,D209,D211,D401,D402,D403,D412,D413, A003, - W504 -min-version = 3.4.0 + W504, + FI15 +min-version = 3.6.0 max-complexity = 12 per-file-ignores = qutebrowser/api/hook.py : N801 -- cgit v1.2.3-54-g00ecf