Skip to content

Commit

Permalink
Fix AppVeyor CI (#2111)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut authored Jun 4, 2022
1 parent 4f05331 commit 5ca6870
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,5 @@ only_commits:
- psutil/arch/windows/*
- psutil/tests/*
- scripts/*
- scripts/internal/*
- setup.py
6 changes: 4 additions & 2 deletions scripts/internal/winmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,20 @@
"coverage",
"flake8",
"flake8-blind-except",
"flake8-bugbear",
"flake8-debugger",
"flake8-print",
"nose",
"pdbpp",
"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):
Expand Down

0 comments on commit 5ca6870

Please sign in to comment.