Skip to content

Commit

Permalink
fix: use --no-cache-dir for pip install in Python environment setup
Browse files Browse the repository at this point in the history
  • Loading branch information
xalbertoisorna committed Nov 26, 2024
1 parent 84379d1 commit 45acf0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/helper_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function setup_python_env() {
# Activate the virtual environment
echo "Activating virtual environment in ${venv_dir}..."
source "${venv_dir}/bin/activate"
pip install --user xmos_ai_tools
pip install --no-cache-dir xmos_ai_tools
echo "Python environment setup complete."
fi
}

0 comments on commit 45acf0e

Please sign in to comment.