summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-04-20 22:42:19 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-04-20 22:42:19 +0200
commit4900109cb691cfa8efe2b2f674ee3dcee68b878d (patch)
treed04a2af95a96423788f5b38499f4b0397cc6c34c
parentb6b54af4db68c11695519d28029123052dba7d0b (diff)
downloadcython-4900109cb691cfa8efe2b2f674ee3dcee68b878d.tar.gz
Revert "Build Cython in parallel on appveyor if distutils support it."
This reverts commit 52635828ba8eaae0ddf8db43b47822997de91ae1. multiprocessing requires some additional setup on Windows, which I don't currently want to implement in setup.py.
-rw-r--r--appveyor.yml8
1 files changed, 1 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml
index b15054959..f8aa00730 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -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