Skip to content

Commit 904ff82

Browse files
VicVic
authored andcommitted
fixbuildpaths
1 parent 28b61de commit 904ff82

5 files changed

Lines changed: 1074 additions & 217 deletions

File tree

build_pyinstaller_multiOS.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
def main():
88
os_name = platform.system().lower()
99
project_root = Path(__file__).parent.absolute()
10-
VERSION = "0.2.3"
10+
VERSION = "0.2.4"
1111
APP_NAME = "Py-OB"
1212
print(f"🚀 Forging {APP_NAME} v{VERSION} for {os_name}...")
1313
common = [
@@ -16,11 +16,13 @@ def main():
1616
"--noconfirm",
1717
"--paths=src",
1818
"--collect-all=pyob",
19-
"--hidden-import=autoreviewer",
20-
"--hidden-import=reviewer_mixins",
21-
"--hidden-import=core_utils",
22-
"--hidden-import=prompts_and_memory",
19+
"--hidden-import=pyob.autoreviewer",
20+
"--hidden-import=pyob.core_utils",
21+
"--hidden-import=pyob.prompts_and_memory",
22+
"--hidden-import=pyob.reviewer_mixins",
2323
"--hidden-import=pyob.entrance",
24+
"--hidden-import=pyob.pyob_code_parser",
25+
"--hidden-import=pyob.pyob_dashboard",
2426
"--hidden-import=requests",
2527
"--hidden-import=ollama",
2628
"--hidden-import=textwrap",

0 commit comments

Comments
 (0)