diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-09-04 12:43:16 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-09-04 12:43:16 -0700 |
commit | a1328cb5431f99cfe16b246ee4201b19530404e2 (patch) | |
tree | b32048d5c9ea991552b82639714ff6d16617b1ab /run.spec | |
parent | 1e8ea654f5ad1e06bff2660b54a50955098703ba (diff) | |
download | sncontinue-a1328cb5431f99cfe16b246ee4201b19530404e2.tar.gz sncontinue-a1328cb5431f99cfe16b246ee4201b19530404e2.tar.bz2 sncontinue-a1328cb5431f99cfe16b246ee4201b19530404e2.zip |
fix: :green_heart: don't exclude jedi from pyinstaller
Diffstat (limited to 'run.spec')
-rw-r--r-- | run.spec | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,12 +12,12 @@ a = Analysis( datas=[ ('continuedev', 'continuedev'), (certifi.where(), 'ca_bundle') - ], - hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron', 'pylsp'] + copy_metadata('replicate'), + ] + copy_metadata('replicate'), + hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron', 'pylsp'], hookspath=[], hooksconfig={}, runtime_hooks=[], - excludes=['numpy', 'jedi'], + excludes=['numpy'], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, |