Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/build imports issue fix #556

Merged
merged 6 commits into from
Jan 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion opta.spec
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# -*- mode: python ; coding: utf-8 -*-

from PyInstaller.utils.hooks import collect_data_files
import os
def generate_module_import_array():
himps = []
for root, dirs, files in os.walk("./modules"):
for filename in files:
if filename.endswith(".py") and not filename.startswith("test"):
modname = filename.split(".py")[0]
himps.append(".".join(["modules", modname, modname]))
return sorted(himps)



block_cipher = None

himps = generate_module_import_array()

a = Analysis(['opta/cli.py'],
pathex=[],
Expand All @@ -13,7 +25,7 @@ a = Analysis(['opta/cli.py'],
('./modules', 'modules'),
('roots.pem', 'grpc/_cython/_credentials/'),
] + collect_data_files('hcl2'),
hiddenimports=[],
hiddenimports=himps,
hookspath=[],
runtime_hooks=[],
excludes=[],
Expand Down