limit the python version for the postinstall script

This commit is contained in:
Kevin Turcios 2026-01-31 13:50:56 -05:00
parent eb1d27e359
commit 05711151c2

View file

@ -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,
});