aboutsummaryrefslogtreecommitdiffstats
path: root/coin_build_instructions.py
diff options
context:
space:
mode:
authorSimo Fält <simo.falt@qt.io>2019-06-18 13:43:40 +0300
committerSimo Fält <simo.falt@qt.io>2020-02-27 18:27:47 +0200
commitaa69626532f8887257f6f0b3d127a5236215c961 (patch)
tree8033b21d519f4066fee1b070bfc93b0fe2c69b93 /coin_build_instructions.py
parentcd1ffcb3ab9408b3595baa4f2939a65a44a2c052 (diff)
Unpin wheel package
The fix we were waiting for has landed to released wheel package. Change-Id: I4b4a825ee370af79ade54b6b7eb5c6ae082793a7 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 28b1e4a8ee80750454ae9a5e3e4394ebd6d20f58)
Diffstat (limited to 'coin_build_instructions.py')
-rw-r--r--coin_build_instructions.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index 9a7d6272c..c97a35f53 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -39,7 +39,6 @@
from build_scripts.options import has_option
from build_scripts.options import option_value
from build_scripts.utils import install_pip_dependencies
-from build_scripts.utils import install_pip_wheel_package
from build_scripts.utils import get_qtci_virtualEnv
from build_scripts.utils import run_instruction
from build_scripts.utils import rmtree
@@ -101,9 +100,7 @@ def call_setup(python_ver):
rmtree(_env, True)
run_instruction(["virtualenv", "-p", _pExe, _env], "Failed to create virtualenv")
- install_pip_dependencies(env_pip, ["pip", "numpy", "setuptools", "sphinx", "six"])
- install_pip_wheel_package(env_pip)
-
+ install_pip_dependencies(env_pip, ["pip", "numpy", "setuptools", "sphinx", "six", "wheel"])
cmd = [env_python, "-u", "setup.py"]
if CI_RELEASE_CONF:
cmd += ["bdist_wheel", "--standalone"]