From 9967b8c6bc4625e17ec4e39e6b47326750b64fc1 Mon Sep 17 00:00:00 2001 From: Miller Abel Date: Thu, 4 Dec 2025 12:33:41 -0800 Subject: [PATCH] Disable PYTHON_COLORS in run script Fix issue is with syntax and output coloring in Python 3.14 that interferes with output stream wrapper. Add prefix `PYTHON_COLORS=0` to the python3 invocation line in `run.sh`. This disables the output coloring function within the Python interpreter but does not affect output coloring from libraries or other components. The koans now run and complete successfully in 3.14. --- run.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/run.sh b/run.sh index eb978ce78..2cad62304 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,3 @@ #!/bin/sh -python3 -B contemplate_koans.py - +PYTHON_COLORS=0 python3 -B contemplate_koans.py