From 65a4d64786f835436d92424c7d0ee370383ee7d0 Mon Sep 17 00:00:00 2001 From: Chinesezjc Date: Wed, 26 Aug 2026 00:50:43 +0800 Subject: [PATCH] chore(code-runtime-python): adopt master's package.json peer dependencies The earlier merge had kept the branch's older package.json while taking master's lockfile, so a frozen install failed on mismatched specifiers for the code-runtime-python package (master added dsh-code-runtime, dsh-session, and dsh-timeout peers). The branch changes no dependencies, so it adopts master's manifest verbatim. --- packages/code-runtime/code-runtime-python/package.json | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/code-runtime/code-runtime-python/package.json b/packages/code-runtime/code-runtime-python/package.json index 901be191a9..cd5aa2996c 100644 --- a/packages/code-runtime/code-runtime-python/package.json +++ b/packages/code-runtime/code-runtime-python/package.json @@ -32,20 +32,11 @@ ], "license": "MIT", "peerDependencies": { - "@deepseek-ai/dsh-code-runtime": "workspace:^", "@deepseek-ai/dsh-invariants": "workspace:^", - "@deepseek-ai/dsh-session": "workspace:^", - "@deepseek-ai/dsh-timeout": "workspace:^", "@deepseek-ai/cordis": "workspace:^" }, - "dependencies": { - "@deepseek-ai/schemastery": "workspace:^" - }, "devDependencies": { - "@deepseek-ai/dsh-code-runtime": "workspace:^", "@deepseek-ai/dsh-invariants": "workspace:^", - "@deepseek-ai/dsh-session": "workspace:^", - "@deepseek-ai/dsh-timeout": "workspace:^", "@deepseek-ai/cordis": "workspace:^" } }