File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ build_script:
141
141
- cmd : |
142
142
"%PYTHON%/python.exe" -m pip install --upgrade pip
143
143
"%PYTHON%/python.exe" -m pip install --upgrade setuptools
144
- set "CI_BUILD=True " && "%PYTHON%/python.exe" -m pip wheel --wheel-dir=%cd%\dist . --verbose
144
+ set "CI_BUILD=1 " && "%PYTHON%/python.exe" -m pip wheel --wheel-dir=%cd%\dist . --verbose
145
145
146
146
before_test :
147
147
- ps : |
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def main():
14
14
os .chdir (os .path .dirname (os .path .abspath (__file__ )))
15
15
16
16
CI_BUILD = os .environ .get ("CI_BUILD" , "False" )
17
- is_CI_build = True if CI_BUILD == "True " else False
17
+ is_CI_build = True if CI_BUILD == "1 " else False
18
18
cmake_source_dir = "opencv"
19
19
minimum_supported_numpy = "1.13.1"
20
20
build_contrib = get_build_env_var_by_name ("contrib" )
You can’t perform that action at this time.
0 commit comments