summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMatthieu Darbois <mayeut@users.noreply.github.com>2022-06-05 01:11:41 +0200
committerGitHub <noreply@github.com>2022-06-05 01:11:41 +0200
commit5ca68709c44885f6902820e8dcb9fcff1cc1e33b (patch)
treece0f507c0588378d7322bdb6f83897aaa7ae5fef /scripts
parent4f053312934cdca739c3fefe4ada8a4f2d096bdd (diff)
downloadpsutil-5ca68709c44885f6902820e8dcb9fcff1cc1e33b.tar.gz
Fix AppVeyor CI (#2111)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/internal/winmake.py6
1 files changed, 4 insertions, 2 deletions
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):