Skip to content

Commit

Permalink
Do not use python3.8 in update lint dependencies script
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Oct 31, 2024
1 parent 0f06c9b commit 22e7be8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/update_lint_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ THIS_DIRECTORY="$(cd "$(dirname "$0")" > /dev/null && pwd)"

update_pinned_reqs() {
VENV=$(mktemp -d "${TMPDIR:-/tmp}/$1_venv.XXXXXXXXXX")
python3.8 -m venv "${VENV}"
python3 -m venv "${VENV}"
. "${VENV}/bin/activate"
pip install --upgrade pip setuptools
pip install -r "${THIS_DIRECTORY}/$1-requirements.txt"
Expand Down

0 comments on commit 22e7be8

Please sign in to comment.