Skip to content

Commit

Permalink
Merge pull request #1787 from edx/hassan/user-retirement-python-upgrade
Browse files Browse the repository at this point in the history
chore: update user retirement to use python3.11
  • Loading branch information
HassanJaveed84 authored Oct 18, 2024
2 parents caaf0c5 + 559894f commit 440cd37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dataeng/resources/user-retirement-collector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env
# setting on the jenkins worker, it would be safest to keep the builds from
# clobbering each other's virtualenvs.
VENV="venv-${BUILD_NUMBER}"
virtualenv --python=python3.8 --clear "${VENV}"
virtualenv --python=python3.11 --clear "${VENV}"
source "${VENV}/bin/activate"

# Make sure that when we try to write unicode to the console, it
Expand Down
2 changes: 1 addition & 1 deletion dataeng/resources/user-retirement-driver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env
# setting on the jenkins worker, it would be safest to keep the builds from
# clobbering each other's virtualenvs.
VENV="venv-${BUILD_NUMBER}"
virtualenv --python=python3.8 --clear "${VENV}"
virtualenv --python=python3.11 --clear "${VENV}"
source "${VENV}/bin/activate"

# Make sure that when we try to write unicode to the console, it
Expand Down

0 comments on commit 440cd37

Please sign in to comment.