From 5ca68709c44885f6902820e8dcb9fcff1cc1e33b Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Sun, 5 Jun 2022 01:11:41 +0200 Subject: Fix AppVeyor CI (#2111) --- scripts/internal/winmake.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/internal/winmake.py b/scripts/internal/winmake.py index 6dd1a9b7..bb880051 100755 --- a/scripts/internal/winmake.py +++ b/scripts/internal/winmake.py @@ -42,7 +42,6 @@ DEPS = [ "coverage", "flake8", "flake8-blind-except", - "flake8-bugbear", "flake8-debugger", "flake8-print", "nose", @@ -50,10 +49,13 @@ DEPS = [ "pip", "pyperf", "pyreadline", - "requests" + "requests", "setuptools", "wheel", ] + +if sys.version_info[:2] >= (3, 5): + DEPS.append('flake8-bugbear') if sys.version_info[:2] <= (2, 7): DEPS.append('mock') if sys.version_info[:2] <= (3, 2): -- cgit v1.2.1