v2.6.0 (#524)
Co-authored-by: Clément Drouin <clement.drouin@mistral.ai> Co-authored-by: Clément Sirieix <clement.sirieix@mistral.ai> Co-authored-by: Gauthier Guinet <43207538+Gguinet@users.noreply.github.com> Co-authored-by: Kim-Adeline Miguel <kimadeline.miguel@mistral.ai> Co-authored-by: Michel Thomazo <51709227+michelTho@users.noreply.github.com> Co-authored-by: Quentin <torroba.q@gmail.com> Co-authored-by: Simon <80467011+sorgfresser@users.noreply.github.com> Co-authored-by: Simon Van de Kerckhove <simon.vandekerckhove@mistral.ai> Co-authored-by: Vincent G <10739306+VinceOPS@users.noreply.github.com> Co-authored-by: angelapopopo <angele.lenglemetz@mistral.ai> Co-authored-by: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
parent
5103019b01
commit
eb580209d4
180 changed files with 11136 additions and 1030 deletions
|
|
@ -1,4 +1,7 @@
|
|||
# -*- mode: python ; coding: utf-8 -*-
|
||||
# Onedir build for vibe-acp — no per-launch extraction overhead.
|
||||
# Build: uv run --group build pyinstaller vibe-acp.spec
|
||||
# Output: dist/vibe-acp-dir/vibe-acp (+ dist/vibe-acp-dir/_internal/)
|
||||
|
||||
from PyInstaller.utils.hooks import collect_all
|
||||
|
||||
|
|
@ -7,7 +10,7 @@ core_builtins_deps = collect_all('vibe.core.tools.builtins')
|
|||
acp_builtins_deps = collect_all('vibe.acp.tools.builtins')
|
||||
|
||||
# Extract hidden imports and binaries, filtering to ensure only strings are in hiddenimports
|
||||
hidden_imports = []
|
||||
hidden_imports = ["truststore"]
|
||||
for item in core_builtins_deps[2] + acp_builtins_deps[2]:
|
||||
if isinstance(item, str):
|
||||
hidden_imports.append(item)
|
||||
|
|
@ -31,7 +34,7 @@ a = Analysis(
|
|||
hiddenimports=hidden_imports,
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
runtime_hooks=["pyinstaller/runtime_hook_truststore.py"],
|
||||
excludes=[],
|
||||
noarchive=False,
|
||||
optimize=0,
|
||||
|
|
@ -41,8 +44,6 @@ pyz = PYZ(a.pure)
|
|||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
[],
|
||||
name='vibe-acp',
|
||||
debug=False,
|
||||
|
|
@ -50,7 +51,6 @@ exe = EXE(
|
|||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=True,
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
|
|
@ -58,3 +58,13 @@ exe = EXE(
|
|||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
)
|
||||
|
||||
coll = COLLECT(
|
||||
exe,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
name='vibe-acp-dir',
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue