aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-07-03 08:24:42 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-07-03 13:42:12 +0200
commit3dd32863337ea2f6308ebf2f7656795d3fd488c9 (patch)
tree08a3b35607dee19536ccb5f21b2ede0fdc41cc79 /build_scripts
parent4f4f1be9f46e02e87357aeee613cfd5ea0be8220 (diff)
parent67d635fe2cc2c89c30486a2e26dea4106a9d9c16 (diff)
Merge "Merge remote-tracking branch 'origin/5.13' into dev"
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: