From f52fc4dd4242dddebb349b3b78997c4f9d73686c Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Mon, 25 Sep 2023 10:53:38 -0500 Subject: [PATCH] remove getfullnameof in pyinstaller_pip.spec changes in pyinstaller>=6.0.0 removed getfullnameof --- pyinstaller_pip.spec | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyinstaller_pip.spec b/pyinstaller_pip.spec index 64f2584..ca6a4c0 100644 --- a/pyinstaller_pip.spec +++ b/pyinstaller_pip.spec @@ -50,13 +50,13 @@ a = Analysis(['run.py'], # There is an issue that keeps the OpenSSL libraries from being copied to the output directory. # This should work if nothing else, but does not with GitHub Actions -if sys.platform == 'win32': - from PyInstaller.depend.bindepend import getfullnameof - rel_data_path = ['PyQt5', 'Qt', 'bin'] - a.datas += [ - (getfullnameof('libssl-1_1-x64.dll'), os.path.join(*rel_data_path), 'DATA'), - (getfullnameof('libcrypto-1_1-x64.dll'), os.path.join(*rel_data_path), 'DATA'), - ] +# if sys.platform == 'win32': +# from PyInstaller.depend.bindepend import getfullnameof +# rel_data_path = ['PyQt5', 'Qt', 'bin'] +# a.datas += [ +# (getfullnameof('libssl-1_1-x64.dll'), os.path.join(*rel_data_path), 'DATA'), +# (getfullnameof('libcrypto-1_1-x64.dll'), os.path.join(*rel_data_path), 'DATA'), +# ] pyz = PYZ(a.pure, a.zipped_data,