Skip to content

Commit

Permalink
feat: force reinstallation of the gentropy on the cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon Szyszkowski committed Oct 1, 2024
1 parent a5588ae commit 7b7fc24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils/install_dependencies_on_cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ function main() {
echo "Uninstalling previous version if it exists"
pip uninstall -y gentropy
echo "Install package..."
run_with_retry pip install --upgrade ${PACKAGENAME}
# NOTE: ensure the gentropy is reinstalled each time without version cache
# see https://pip.pypa.io/en/stable/cli/pip_install/#cmdoption-force-reinstall
run_with_retry pip install --force-reinstall ${PACKAGENAME}

}

Expand Down

0 comments on commit 7b7fc24

Please sign in to comment.