Commit 4900109c authored by Stefan Behnel's avatar Stefan Behnel

Revert "Build Cython in parallel on appveyor if distutils support it."

This reverts commit 52635828.

multiprocessing requires some additional setup on Windows, which I don't currently want to implement in setup.py.
parent b6b54af4
......@@ -8,20 +8,17 @@ environment:
# See: https://stackoverflow.com/questions/11267463/compiling-python-modules-on-windows-x64/13751649#13751649
WITH_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
BACKEND: c
PARALLEL: "-j4"
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
PYTHONIOENCODING: "utf-8"
PARALLEL: ""
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
PYTHONIOENCODING: "utf-8"
PARALLEL: ""
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8"
......@@ -63,19 +60,16 @@ environment:
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "32"
PARALLEL: ""
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
PARALLEL: ""
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
BACKEND: cpp
PYTHONIOENCODING: "utf-8"
PARALLEL: ""
clone_depth: 5
......@@ -95,7 +89,7 @@ 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 --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