Commit ddaaa7b8 authored by Stefan Behnel's avatar Stefan Behnel

appveyor: Prevent the compiled Cython modules from being picked up during the...

appveyor: Prevent the compiled Cython modules from being picked up during the build already by first compiling them completely before putting them into the source tree. On fork()-less Windows, late starting build processes could otherwise end up with partially compiled source trees.
parent 642654c9
......@@ -117,7 +117,8 @@ install:
build: off
build_script:
- "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext --inplace %PARALLEL%"
- "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext %PARALLEL%"
- "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext --inplace"
- "%WITH_ENV% %PYTHON%\\python.exe setup.py bdist_wheel"
test: off
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment