Skip to content

Commit

Permalink
Fix: Appveyor errors related to missing python2
Browse files Browse the repository at this point in the history
https://ci.appveyor.com/project/vedang/pdf-tools/builds/38649076
failed with `python2 not found`, which was the proposed fix in
politza/pdf-tools@628 . My guess is that `python2` now needs to be
explicitly installed in mingw64.

This commit adds an explicit dependency on `mingw-w64-x86_64-python2`
to test this.

Closes politza/pdf-tools@628
  • Loading branch information
vedang committed Apr 11, 2021
1 parent f59f53e commit 1207e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/appveyor/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ IF %COMPILER%==msys2 (
bash -lc "pacman -S --needed --noconfirm git"

REM dependencies
bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl"
bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng mingw-w64-x86_64-poppler mingw-w64-x86_64-imagemagick openssl mingw-w64-x86_64-openssl mingw-w64-x86_64-python2"

REM Set up emacs
bash -lc "pacman -S --needed --noconfirm mingw-w64-x86_64-emacs"
Expand Down

0 comments on commit 1207e18

Please sign in to comment.