summaryrefslogtreecommitdiffhomepage
path: root/setup.cfg
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2018-12-14 19:42:22 -0800
committerJeff Forcier <jeff@bitprophet.org>2018-12-14 19:42:22 -0800
commit4069ab9754294dd0d273e1bcf8d465ee410c13a4 (patch)
tree2504248f4f90fa2c45e559695b3fc635e40b99b0 /setup.cfg
parent187e528eb908680c07642f73e6f5ea6e8775626d (diff)
parenta376ab00d6ff7cac7498e72671bb4061db65efd6 (diff)
Merge branch '2.3' into 2.4
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index bf86db42..7ff383c3 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -11,7 +11,9 @@ omit = paramiko/_winapi.py
exclude = sites,.git,build,dist,demos,tests
# NOTE: W503, E203 are concessions to black 18.0b5 and could be reinstated
# later if fixed on that end.
-ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503,E203
+# NOTE: E722 seems to only have started popping up on move to flake8 3.6.0 from
+# 2.4.0. Not sure why, bare excepts have been a (regrettable) thing forever...
+ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503,E203,E722
max-line-length = 79
[tool:pytest]