Skip to content

Commit

Permalink
Merge pull request #1795 from edx/bbeggs/ent-upgrade-python
Browse files Browse the repository at this point in the history
chore: update model-transfers job to use python 3.11
  • Loading branch information
macdiesel authored Nov 20, 2024
2 parents 83e66ce + 1a3d8c6 commit 8878e62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dataeng/resources/model-transfers.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
set -ex

# 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}"
# Creating python 3.11 virtual environment to run dbt warehouse-transform job
PYTHON_VENV="py311_venv"
virtualenv --python=python3.11 --clear "${PYTHON_VENV}"
source "${PYTHON_VENV}/bin/activate"

# Setup
Expand Down

0 comments on commit 8878e62

Please sign in to comment.