From b940dca18d13085c877a30c24b86b1299a1b56c9 Mon Sep 17 00:00:00 2001 From: Chinesezjc Date: Tue, 18 Aug 2026 10:10:30 +0800 Subject: [PATCH] fix(code-runtime-python): match the rc.7 root version The 0.1.0-rc.7 release commit bumped every release member except code-runtime-python, which had landed on master between rc.6 and that release. check-workspace-constraints requires each non-private workspace package to carry the root version, so the constraints gate inside `node 24 / static` fails for every pull request built against master. --- packages/code-runtime/code-runtime-python/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/code-runtime/code-runtime-python/package.json b/packages/code-runtime/code-runtime-python/package.json index 2b7734dc94..7cea7a25b5 100644 --- a/packages/code-runtime/code-runtime-python/package.json +++ b/packages/code-runtime/code-runtime-python/package.json @@ -1,7 +1,7 @@ { "name": "@deepseek-ai/dsh-code-runtime-python", "description": "CPython subprocess implementation of the DeepSeek Harness code-execution seam", - "version": "0.1.0-rc.6", + "version": "0.1.0-rc.7", "publishConfig": { "access": "public" },