Skip to content

Commit

Permalink
chore: use python 3.11 for schema builder
Browse files Browse the repository at this point in the history
  • Loading branch information
HassanJaveed84 committed Sep 23, 2024
1 parent 733b2ef commit 17693c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dataeng/resources/snowflake-schema-builder.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env bash
set -ex

# Creating python 3.9 virtual environment to run schema builder
PYTHON38_VENV="py39_venv"
virtualenv --python=python3.9 --clear "${PYTHON38_VENV}"
# Creating python 3.11 virtual environment to run schema builder
PYTHON311_VENV="py311_venv"
virtualenv --python=python3.11 --clear "${PYTHON311_VENV}"
source "${PYTHON38_VENV}/bin/activate"

# Setup
Expand Down

0 comments on commit 17693c5

Please sign in to comment.