Skip to content

Commit 0571115

Browse files
committed
limit the python version for the postinstall script
1 parent eb1d27e commit 0571115

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/codeflash/scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function installCodeflash(uvBin) {
115115
try {
116116
// Use uv tool install to install codeflash in an isolated environment
117117
// This avoids conflicts with any existing Python environments
118-
execSync(`"${uvBin}" tool install codeflash --force`, {
118+
execSync(`"${uvBin}" tool install --force --python python3.12 codeflash`, {
119119
stdio: 'inherit',
120120
shell: true,
121121
});

0 commit comments

Comments
 (0)