From a11c23b3806e7e559e8ca56c67e7578761642078 Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Tue, 19 May 2026 15:13:22 +0200 Subject: [PATCH] fix(cli): keep managed runtime python version private --- packages/cli/src/managed-python-runtime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/managed-python-runtime.ts b/packages/cli/src/managed-python-runtime.ts index dbe2f859..611f21ab 100644 --- a/packages/cli/src/managed-python-runtime.ts +++ b/packages/cli/src/managed-python-runtime.ts @@ -20,7 +20,7 @@ export type KtxRuntimeFeature = z.infer; * requires Python >=3.13" error. Pinning here pushes uv to auto-download the * right interpreter via its python-management feature. */ -export const MANAGED_RUNTIME_PYTHON_VERSION = '3.13'; +const MANAGED_RUNTIME_PYTHON_VERSION = '3.13'; const runtimeAssetManifestSchema = z.object({ schemaVersion: z.literal(1),