Skip to content

Commit

Permalink
Merge pull request #4082 from nulano/winbuild-pypy3
Browse files Browse the repository at this point in the history
PyPy3 on AppVeyor
  • Loading branch information
hugovk authored Sep 24, 2019
2 parents 79a9981 + 201efa8 commit e17f728
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 @@ -30,6 +30,10 @@ environment:
PIP_DIR: bin
TEST_OPTIONS: --processes=0
DEPLOY: NO
- PYTHON: C:/vp/pypy3
EXECUTABLE: bin/pypy.exe
PIP_DIR: bin
VENV: YES


install:
Expand All @@ -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 http://buildbot.pypy.org/nightly/py3.6/pypy-c-jit-97588-7392d01b93d0-win32.zip
7z x pypy3.zip -oc:\
c:\Python37\Scripts\virtualenv.exe -p c:\pypy-c-jit-97588-7392d01b93d0-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 @@ -8,6 +8,7 @@
"pypy2": {"compiler": 7, "vc": 2010},
"35": {"compiler": 7.1, "vc": 2015},
"36": {"compiler": 7.1, "vc": 2015},
"pypy3": {"compiler": 7.1, "vc": 2015},
"37": {"compiler": 7.1, "vc": 2015},
}

Expand Down

0 comments on commit e17f728

Please sign in to comment.