From 46fb9d9cfc483ad5ba17f76706580121419c41a6 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 6 May 2016 08:54:25 -0700 Subject: [PATCH] tox: reject pyflakes-1.2*, due to a bug https://bugs.launchpad.net/pyflakes/+bug/1560134 causes an internal error in pyflakes 1.2.0 and 1.2.1 when it encounters one of our "from . import x" statements. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 80751e4..ebf8204 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ skip_missing_interpreters = True [testenv] deps = - pyflakes + pyflakes != 1.2.0, != 1.2.1 {env:EXTRA_DEPENDENCY:} commands = pyflakes setup.py src