aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
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>2019-06-18 13:43:40 +0300
commit28b1e4a8ee80750454ae9a5e3e4394ebd6d20f58 (patch)
tree25607a1d645ad243814043e070f6a204f4ce56a0 /build_scripts
parentee226dff8334cea7c4970051fcd3ade392cd85b0 (diff)
Unpin wheel package
The fix we were waiting for has landed to released wheel package. Change-Id: I1d83be7cd9662ca2e076e9c03c03c38f1b0c9ecb Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'build_scripts')
-rw-r--r--build_scripts/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index b34d37123..5375e9f8a 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -1089,13 +1089,6 @@ def get_python_dict(python_script_path):
"file: {}.".format(python_script_path))
raise
-def install_pip_wheel_package(env_pip):
- # Need to install an unreleased wheel version, due to a bug that
- # will generate a wheel which will not be installable.
- # See https://github.com/pypa/wheel/issues/263
- wheel_url = "git+https://github.com/pypa/wheel.git@fbf3e3ada64d36ca7bb9c1422f5a1ccdba7e4dcf"
- install_pip_package_from_url_specifier(env_pip, wheel_url)
-
def install_pip_package_from_url_specifier(env_pip, url, upgrade=True):
args = [env_pip, "install", url]
if upgrade: