From 556bb94aa58a748875d9d4d3b05a3179f2689de7 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Thu, 24 Oct 2019 14:11:42 +0200 Subject: [PATCH] README: add PYFLAKES=/usr/bin/pyflakes3 env variable pyflakes 2.x nowadays complains about aa-genprof:60: undefined name 'PermissionError' We already deprecated py2 support in 2.11 (and obviously nobody tests with py2 anymore), therefore recommending pyflakes3 makes sense. Maybe we should also change our Makefiles to use py3 and pyflakes3 by default, but that will be another (master-only) commit. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b0a13fb2..877273277 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ $ make install ``` $ cd utils $ make -$ make check +$ make check PYFLAKES=/usr/bin/pyflakes3 $ make install ```