fix(ci): add PYTHONIOENCODING for Windows emoji support

Windows uses cp1252 encoding by default which doesn't support
emoji characters. Setting PYTHONIOENCODING=utf-8 fixes the
UnicodeEncodeError when Rich prints the banner with emojis.
This commit is contained in:
Vijay Janapa Reddi
2026-01-26 08:55:31 -05:00
parent 0936aa6f66
commit ef1919ad00

View File

@@ -91,6 +91,7 @@ concurrency:
env:
TITO_ALLOW_SYSTEM: "1"
TINYTORCH_QUIET: "1"
PYTHONIOENCODING: "utf-8" # Required for Windows emoji support in Rich
jobs:
# ===========================================================================