mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
limit the python version for the postinstall script
This commit is contained in:
parent
eb1d27e359
commit
05711151c2
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ function installCodeflash(uvBin) {
|
|||
try {
|
||||
// Use uv tool install to install codeflash in an isolated environment
|
||||
// This avoids conflicts with any existing Python environments
|
||||
execSync(`"${uvBin}" tool install codeflash --force`, {
|
||||
execSync(`"${uvBin}" tool install --force --python python3.12 codeflash`, {
|
||||
stdio: 'inherit',
|
||||
shell: true,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue