Skip to content

Commit

Permalink
Add Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 8, 2017
1 parent 51532c2 commit c89342c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
12 changes: 7 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ clone_folder: c:\pillow
init:
- ECHO %PYTHON%
#- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# Uncomment previous line to get RDP access during the build.
# Uncomment previous line to get RDP access during the build.

environment:
X64_EXT: -x64
matrix:
- PYTHON: C:/Python35
- PYTHON: C:/Python35-x64
- PYTHON: C:/Python27
- PYTHON: C:/Python27-x64
- PYTHON: C:/Python34
- PYTHON: C:/Python27
- PYTHON: C:/Python34-x64
- PYTHON: C:/Python33
- PYTHON: C:/Python33-x64
Expand Down Expand Up @@ -53,15 +55,15 @@ after_test:

deploy:
provider: S3
access_key_id: AKIAIRAXC62ZNTVQJMOQ
access_key_id: AKIAIRAXC62ZNTVQJMOQ
secret_access_key:
secure: Hwb6klTqtBeMgxAjRoDltiiqpuH8xbwD4UooDzBSiCWXjuFj1lyl4kHgHwTCCGqi
bucket: pillow-nightly
folder: win/$(APPVEYOR_BUILD_NUMBER)/
artifact: /.*egg|wheel/
on:
on:
branch: master

# Uncomment the following line to get RDP access after the build/test and block for
# up to the timeout limit (~1hr)
#
Expand Down
24 changes: 20 additions & 4 deletions winbuild/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
SF_MIRROR = 'http://iweb.dl.sourceforge.net'
PILLOW_DEPENDS_DIR = 'C:\\pillow-depends\\'

pythons = { # '26': 7,
'27': 7,
# '32': 7,
pythons = {'27': 7,
'33': 7.1,
'34': 7.1}
'34': 7.1,
'35': 14,
}

VIRT_BASE = "c:/vp/"
X64_EXT = os.environ.get('X64_EXT', "x64")
Expand Down Expand Up @@ -121,6 +121,22 @@
'platform': 'Win32',
'webp_platform': 'x86',
},
(14, 64): {
'env_version': 'v14',
'vc_version': '2015',
'env_flags': '/x64 /vista',
'inc_dir': 'msvcr10-x64',
'platform': 'x64',
'webp_platform': 'x64',
},
(14, 32): {
'env_version': 'v14',
'vc_version': '2015',
'env_flags': '/x86 /vista',
'inc_dir': 'msvcr10-x32',
'platform': 'Win32',
'webp_platform': 'x86',
},
}


Expand Down

0 comments on commit c89342c

Please sign in to comment.