diff options
-rw-r--r-- | run.m1.spec | 7 | ||||
-rw-r--r-- | run.spec | 5 |
2 files changed, 7 insertions, 5 deletions
diff --git a/run.m1.spec b/run.m1.spec index 3eeea867..ad75856a 100644 --- a/run.m1.spec +++ b/run.m1.spec @@ -1,5 +1,6 @@ # -*- mode: python ; coding: utf-8 -*- import certifi +from PyInstaller.utils.hooks import copy_metadata block_cipher = None @@ -10,9 +11,9 @@ a = Analysis( binaries=[], datas=[ ('continuedev', 'continuedev'), - (certifi.where(), 'ca_bundle') - ], - hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron'], + (certifi.where(), 'ca_bundle'), + ] + copy_metadata('replicate'), + hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron', 'replicate'], hookspath=[], hooksconfig={}, runtime_hooks=[], @@ -1,5 +1,6 @@ # -*- mode: python ; coding: utf-8 -*- import certifi +from PyInstaller.utils.hooks import copy_metadata block_cipher = None @@ -11,8 +12,8 @@ a = Analysis( datas=[ ('continuedev', 'continuedev'), (certifi.where(), 'ca_bundle') - ], - hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron'], + ] + copy_metadata('replicate'), + hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron', 'replicate'], hookspath=[], hooksconfig={}, runtime_hooks=[], |