Setup: exclude zstandard (#4155)

This is quite the big dependency (~20MB) that is unused.
For non-webhost it is an optional dependency to requests.
This commit is contained in:
black-sliver 2024-11-07 09:41:42 +01:00 committed by GitHub
parent 7449bf6b99
commit a0207e0286
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ cx_Freeze.setup(
"packages": ["worlds", "kivy", "cymem", "websockets"],
"includes": [],
"excludes": ["numpy", "Cython", "PySide2", "PIL",
"pandas"],
"pandas", "zstandard"],
"zip_include_packages": ["*"],
"zip_exclude_packages": ["worlds", "sc2", "orjson"], # TODO: remove orjson here once we drop py3.8 support
"include_files": [], # broken in cx 6.14.0, we use more special sauce now