Skip to content

Commit

Permalink
appveyor pypy3
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Sep 20, 2019
1 parent cd880d6 commit 593ea32
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ environment:
TEST_OPTIONS:
DEPLOY: YES
matrix:
- PYTHON: C:/vp/pypy3
EXECUTABLE: bin/pypy3.exe
PIP_DIR: bin
VENV: YES
- PYTHON: C:/vp/pypy2
EXECUTABLE: bin/pypy.exe
PIP_DIR: bin
Expand Down Expand Up @@ -43,7 +47,12 @@ install:
- ps: |
if ($env:PYTHON -eq "c:/vp/pypy2")
{
c:\pillow\winbuild\appveyor_install_pypy.cmd
c:\pillow\winbuild\appveyor_install_pypy2.cmd
}
- ps: |
if ($env:PYTHON -eq "c:/vp/pypy3")
{
c:\pillow\winbuild\appveyor_install_pypy3.cmd
}
- ps: |
if ($env:PYTHON -eq "c:/msys64/mingw32")
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions winbuild/appveyor_install_pypy3.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
curl -fsSL -o pypy3.zip https://bitbucket.org/pypy/pypy/downloads/pypy3.6-v7.1.1-win32.zip
7z x pypy3.zip -oc:\
c:\Python37\Scripts\virtualenv.exe -p c:\pypy3.6-v7.1.1-win32\pypy3.exe c:\vp\pypy3
1 change: 1 addition & 0 deletions winbuild/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
pythons = {
"27": {"compiler": 7, "vc": 2010},
"pypy2": {"compiler": 7, "vc": 2010},
"pypy3": {"compiler": 7, "vc": 2010},
"35": {"compiler": 7.1, "vc": 2015},
"36": {"compiler": 7.1, "vc": 2015},
"37": {"compiler": 7.1, "vc": 2015},
Expand Down

0 comments on commit 593ea32

Please sign in to comment.