@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.
- package/package.json +1 -1
- package/run.js +2 -1
package/package.json
CHANGED
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
|
-
|
|
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);
|