From b710c27468635a7f2963bfd93080e3ff6acac912 Mon Sep 17 00:00:00 2001 From: Florent Fourcot Date: Thu, 29 Dec 2016 23:18:41 +0100 Subject: [PATCH] setup: remove python2.6 executable search We don't support python 2.6 anymore --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 035a0fae71..11c961ed39 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def find_executable(name, names): def build_qt(): print('Building Qt applications...', file=sys.stderr) make = find_executable('make', ('gmake', 'make')) - pyuic5 = find_executable('pyuic5', ('python2-pyuic5', 'pyuic5-python2.7', 'pyuic5-python2.6', 'pyuic5')) + pyuic5 = find_executable('pyuic5', ('python2-pyuic5', 'pyuic5-python2.7', 'pyuic5')) if not pyuic5 or not make: print('Install missing component(s) (see above) or disable Qt applications (with --no-qt).', file=sys.stderr) sys.exit(1) -- GitLab