Skip to content

Commit

Permalink
Fix check_install for python 3.6 (openvinotoolkit#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
helena-intel authored Feb 6, 2022
1 parent 5c37ab8 commit 76d7388
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/install_requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- 'main'
paths:
- '.github/workflows/install_requirements.yml'
- 'check_install.py'

jobs:
build_nbval:
Expand Down
2 changes: 1 addition & 1 deletion check_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def show_supported(supported):


def pip_check():
result = subprocess.run(["pip", "check"], universal_newlines=True, capture_output=True)
result = subprocess.run(["pip", "check"], universal_newlines=True, stdout=subprocess.PIPE)
if "No broken requirements found" in result.stdout:
return True, ""
else:
Expand Down

0 comments on commit 76d7388

Please sign in to comment.