Skip to content

Commit

Permalink
Merge pull request #1783 from edx/hassan/schema-builder-py39
Browse files Browse the repository at this point in the history
chore: use python 3.9 for schema builder
  • Loading branch information
HassanJaveed84 authored Sep 19, 2024
2 parents 9fee28e + 1d957b9 commit 733b2ef
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.8 virtual environment to run schema builder
PYTHON38_VENV="py38_venv"
virtualenv --python=python3.8 --clear "${PYTHON38_VENV}"
# Creating python 3.9 virtual environment to run schema builder
PYTHON38_VENV="py39_venv"
virtualenv --python=python3.9 --clear "${PYTHON38_VENV}"
source "${PYTHON38_VENV}/bin/activate"

# Setup
Expand Down

0 comments on commit 733b2ef

Please sign in to comment.