@scemoon/cdh 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/run.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scemoon/cdh",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Cloud Dev Harness - cloud-native development Agent framework",
5
5
  "keywords": ["ai", "agent", "cloud", "development", "cli", "cdc"],
6
6
  "license": "MIT",
package/run.js CHANGED
@@ -98,7 +98,8 @@ function run(pythonModule) {
98
98
  if (fs.existsSync(PYTHON_ENV_DIR)) {
99
99
  console.log('cdh: Python environment exists, reusing...');
100
100
  } else {
101
- const rv = execVerbose(`uv venv "${PYTHON_ENV_DIR}"`, 'Creating Python environment with uv...');
101
+ execVerbose(`uv python install 3.14.2`, 'Installing Python 3.14.2 with uv...');
102
+ const rv = execVerbose(`uv venv "${PYTHON_ENV_DIR}" --python 3.14.2`, 'Creating Python environment with uv...');
102
103
  if (!rv.ok) {
103
104
  console.error('cdh: Failed to create Python environment.');
104
105
  process.exit(1);