Skip to content

Commit

Permalink
Fix the windows builds by making comtypes optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Jul 8, 2018
1 parent 7f0510e commit b711dd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@
check_module('requests_toolbelt')
check_module('ply')
check_module('token_bucket')
if sys.platform == 'win32':
check_module('comtypes')
# if sys.platform == 'win32':
# check_module('comtypes')

# We want to use the more modern QtWebEngine by default so we check for that first.
webkit = False
Expand Down
4 changes: 3 additions & 1 deletion releng/ci/appveyor_install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ if not "%APPVEYOR_REPO_TAG_NAME%" == "" appveyor UpdateBuild -Version "%APPVEYOR

set "PATH=C:\Python36;C:\Python36\Scripts;%PATH%"

pip install PyQt5 six requests requests_toolbelt ply raven semantic_version pypiwin32 comtypes pyinstaller etaprogress token_bucket
pip install -U pip
pip install PyQt5 six requests requests_toolbelt ply raven semantic_version pypiwin32 pyinstaller etaprogress token_bucket
pip install comtypes

python tools/common/download_archive.py releng/windows/support/support.json
npm install

0 comments on commit b711dd6

Please sign in to comment.