Skip to content

Commit

Permalink
Merge pull request #1793 from edx/bbeggs/ent-upgrade-python
Browse files Browse the repository at this point in the history
Update python version 3.12 for transfer-dbt-models-enterprise job.
  • Loading branch information
macdiesel authored Nov 19, 2024
2 parents 7acaf83 + c66f0af commit 83e66ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dataeng/resources/model-transfers.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
set -ex

# Creating python 3.8 virtual environment to run dbt warehouse-transform job
PYTHON38_VENV="py38_venv"
virtualenv --python=python3.8 --clear "${PYTHON38_VENV}"
source "${PYTHON38_VENV}/bin/activate"
# Creating python 3.12 virtual environment to run dbt warehouse-transform job
PYTHON_VENV="py312_venv"
/opt/python3.12/bin/python3.12 -m virtualenv --python=python3.12 --clear "${PYTHON_VENV}"
source "${PYTHON_VENV}/bin/activate"

# Setup
cd $WORKSPACE/warehouse-transforms
Expand Down

0 comments on commit 83e66ce

Please sign in to comment.