modifying the remove extention list for super oo

This commit is contained in:
Michael March 2024-02-04 16:35:28 -07:00
parent 4f3fdf1b5f
commit 537821d841

View file

@ -285,7 +285,7 @@ def update_requirements(initial_installation=False):
if install:
print_big_message("Installing extensions requirements.")
skip = ['superbooga', 'superboogav2', 'coqui_tts'] # Fail to install on Windows
skip = ['superbooga', 'coqui_tts'] # Fail to install on Windows
extensions = [foldername for foldername in os.listdir('extensions') if os.path.isfile(os.path.join('extensions', foldername, 'requirements.txt'))]
extensions = [x for x in extensions if x not in skip]
for i, extension in enumerate(extensions):