Skip to content

Commit

Permalink
chore: Update model transfer script to use python3.12 virtualenv.
Browse files Browse the repository at this point in the history
  • Loading branch information
macdiesel committed Nov 19, 2024
1 parent 73ea0ae commit c66f0af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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.8 virtual environment to run dbt warehouse-transform job
# Creating python 3.12 virtual environment to run dbt warehouse-transform job
PYTHON_VENV="py312_venv"
virtualenv --python=python3.12 --clear "${PYTHON_VENV}"
/opt/python3.12/bin/python3.12 -m virtualenv --python=python3.12 --clear "${PYTHON_VENV}"
source "${PYTHON_VENV}/bin/activate"

# Setup
Expand Down

0 comments on commit c66f0af

Please sign in to comment.