Skip to content

Commit dd905a2

Browse files
committed
patch 7.4.2311
Problem: Appveyor 64 bit build still using Python 3.4 Solution: Switch to Python 3.5. (Ken Takata, closes #1032)
1 parent a5d4121 commit dd905a2

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ build_script:
2626
test_script:
2727
- cd src/testdir
2828
# Testing with MSVC gvim
29+
- path C:\Python35-x64;%PATH%
2930
- nmake -f Make_dos.mak VIMPROG=..\gvim
3031
- nmake -f Make_dos.mak clean
3132
# Testing with MingW console version
3233
- nmake -f Make_dos.mak VIMPROG=..\vim
3334

34-
# vim: sw=2 sts=2 et ts=2 sr
35+
# vim: sw=2 sts=2 et ts=8 sr

src/appveyor.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ mingw32-make.exe -f Make_ming.mak clean
1616
:: with specified features without python.
1717
echo "Building MinGW 32bit GUI version"
1818
if "%FEATURE%" == "HUGE" (
19-
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed CHANNEL=yes GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34 FEATURES=%FEATURE% || exit 1
19+
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed CHANNEL=yes GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27 PYTHON3_VER=35 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python35 FEATURES=%FEATURE% || exit 1
2020
) ELSE (
2121
mingw32-make.exe -f Make_ming.mak OPTIMIZE=speed GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no FEATURES=%FEATURE% || exit 1
2222
)
@@ -31,7 +31,7 @@ nmake -f Make_mvc2.mak clean
3131
:: GUI needs to be last, so that testing works
3232
echo "Building MSVC 64bit GUI Version"
3333
if "%FEATURE%" == "HUGE" (
34-
nmake -f Make_mvc2.mak DIRECTX=yes CPU=AMD64 CHANNEL=yes OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64 FEATURES=%FEATURE% || exit 1
34+
nmake -f Make_mvc2.mak DIRECTX=yes CPU=AMD64 CHANNEL=yes OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=35 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python35-x64 FEATURES=%FEATURE% || exit 1
3535
) ELSE (
3636
nmake -f Make_mvc2.mak CPU=AMD64 OLE=no GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no FEATURES=%FEATURE% || exit 1
3737
)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,8 @@ static char *(features[]) =
763763

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2311,
766768
/**/
767769
2310,
768770
/**/

0 commit comments

Comments
 (0)