Skip to content

Commit 1a3d8c6

Browse files
committed
chore: update model-transfers job to use python 3.11
1 parent 83e66ce commit 1a3d8c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dataeng/resources/model-transfers.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env bash
22
set -ex
33

4-
# Creating python 3.12 virtual environment to run dbt warehouse-transform job
5-
PYTHON_VENV="py312_venv"
6-
/opt/python3.12/bin/python3.12 -m virtualenv --python=python3.12 --clear "${PYTHON_VENV}"
4+
# Creating python 3.11 virtual environment to run dbt warehouse-transform job
5+
PYTHON_VENV="py311_venv"
6+
virtualenv --python=python3.11 --clear "${PYTHON_VENV}"
77
source "${PYTHON_VENV}/bin/activate"
88

99
# Setup

0 commit comments

Comments
 (0)