Skip to content

Commit

Permalink
chore: update model-transfers job to use python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
macdiesel committed Nov 20, 2024
1 parent 83e66ce commit 1a3d8c6
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 1a3d8c6

Please sign in to comment.