From da57732b226a4ca37d96a0c0de1165babb6ba611 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 22 Sep 2021 17:23:12 +0200 Subject: [PATCH] removed PyQt special code --- tools/build_dependencies.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tools/build_dependencies.py b/tools/build_dependencies.py index 05ae07d406..1798b7ca8f 100644 --- a/tools/build_dependencies.py +++ b/tools/build_dependencies.py @@ -136,15 +136,6 @@ progress_bar.close() # iterate over frozen libs and create list to delete libs_dir = build_dir / "lib" -# On Windows "python3.dll" is needed for PyQt5 from the build. -if platform.system().lower() == "windows": - src = Path(libs_dir / "PyQt5" / "python3.dll") - dst = Path(deps_dir / "PyQt5" / "python3.dll") - if src.exists(): - shutil.copyfile(src, dst) - else: - _print("Could not find {}".format(src), 1) - sys.exit(1) # On Linux use rpath from source libraries in destination libraries if platform.system().lower() == "linux":