diff options
| author | AAGaming <aagaming@riseup.net> | 2026-09-25 16:20:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-25 16:20:20 -0400 |
| commit | b73a094ae148ca39de5a349432f45f1bf29c0131 (patch) | |
| tree | 8d4b18ceb5e76f9da00e8dd80a86677119c55de3 | |
| parent | f75dc1df134daf53b1ec02c351b12313c1696a7e (diff) | |
| download | decky-loader-b73a094ae148ca39de5a349432f45f1bf29c0131.tar.gz decky-loader-b73a094ae148ca39de5a349432f45f1bf29c0131.zip | |
fix: add more deps to pyinstaller spec (#970)
| -rw-r--r-- | backend/pyinstaller.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/pyinstaller.spec b/backend/pyinstaller.spec index 91ff4e5b..13ac66a0 100644 --- a/backend/pyinstaller.spec +++ b/backend/pyinstaller.spec @@ -9,7 +9,7 @@ a = Analysis( ('decky_loader/locales', 'decky_loader/locales'), ('decky_loader/static', 'decky_loader/static'), ] + copy_metadata('decky_loader'), - hiddenimports=['logging.handlers', 'sqlite3', 'decky_plugin', 'decky'], + hiddenimports=['logging.handlers', 'sqlite3', 'http.server', 'socketserver', 'configparser', 'decky_plugin', 'decky'], ) pyz = PYZ(a.pure, a.zipped_data) |
