8000 add Python 3.6 to the build matrix · yonip/opencv-python@2140ead · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 2140ead

Browse files
committed
add Python 3.6 to the build matrix
1 parent 7d006e4 commit 2140ead

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

appveyor.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ environment:
3030
BUILD_ENV: "Visual Studio 14 Win64"
3131
BUILD_DIR: "build64"
3232
PYTHON_VERSION: "3.5"
33+
- PYTHON: "C:/Python36"
34+
BUILD_ENV: "Visual Studio 14"
35+
BUILD_DIR: "build"
36+
PYTHON_VERSION: "3.6"
37+
- PYTHON: "C:/Python36-x64"
38+
BUILD_ENV: "Visual Studio 14 Win64"
39+
BUILD_DIR: "build64"
40+
PYTHON_VERSION: "3.6"
3341

3442
install:
3543
- cmd: >-
@@ -51,7 +59,7 @@ build_script:
5159
5260
if %PYTHON_VERSION% GEQ 3 cmake -G "%BUILD_ENV%" -H"." -B"%BUILD_DIR%" -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DPYTHON3_EXECUTABLE="%PYTHON%/python.exe" -DPYTHON3_LIBRARY="%PYTHON%/libs/python3*.lib" -DPYTHON3_INCLUDE_DIR="%PYTHON%/include" -Wno-dev
5361
if %PYTHON_VERSION% LSS 3 cmake -G "%BUILD_ENV%" -H"." -B"%BUILD_DIR%" -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -Wno-dev
54-
62+
5563
cd %BUILD_DIR%
5664
5765
cmake --build . --config Release

0 commit comments

Comments
 (0)
0