aboutsummaryrefslogtreecommitdiffstats
path: root/coin_build_instructions.py
diff options
context:
space:
mode:
Diffstat (limited to 'coin_build_instructions.py')
-rw-r--r--coin_build_instructions.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index d094d5b2a..9a7d6272c 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -101,7 +101,7 @@ def call_setup(python_ver):
rmtree(_env, True)
run_instruction(["virtualenv", "-p", _pExe, _env], "Failed to create virtualenv")
- install_pip_dependencies(env_pip, ["numpy", "setuptools", "sphinx", "six"])
+ install_pip_dependencies(env_pip, ["pip", "numpy", "setuptools", "sphinx", "six"])
install_pip_wheel_package(env_pip)
cmd = [env_python, "-u", "setup.py"]
@@ -116,8 +116,6 @@ def call_setup(python_ver):
"--verbose-build"]
if python_ver == "3":
cmd += ["--limited-api=yes"]
- else:
- cmd += ["--skip-docs"] # 1.4.2019: errors in sphinx_build on openSUSE 4.2
if is_snapshot_build():
cmd += ["--snapshot-build"]