We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cbaeb3 commit 4cda5f9Copy full SHA for 4cda5f9
grr/client_builder/grr_response_client_builder/build_helpers.py
@@ -147,6 +147,9 @@ def BuildWithPyInstaller(context=None):
147
config.CONFIG.Get("PyInstaller.workpath_dir", context=context),
148
spec_file,
149
]
150
+ # Pyinstaller does ignore the 'ipaddress' library.
151
+ # The below line is a workaround to force pyinstaller to include it.
152
+ PyInstallerMain.compat.PY3_BASE_MODULES.add('ipaddress')
153
logging.info("Running pyinstaller: %s", args)
154
PyInstallerMain.run(pyi_args=args)
155
0 commit comments