Skip to content

Commit

Permalink
Merge pull request #1784 from edx/hassan/schema-builder-py311
Browse files Browse the repository at this point in the history
chore: use python 3.11 for schema builder
  • Loading branch information
HassanJaveed84 authored Sep 23, 2024
2 parents 733b2ef + 17693c5 commit 96cf0b3
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 96cf0b3

Please sign in to comment.