Skip to content

Commit

Permalink
respect constraints when instaling base provider requirements (aws#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayushko26 authored Jul 12, 2023
1 parent 2e40031 commit 56a84e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/script/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ if [ -n "${PYTHON_DEPS}" ]; then sudo -u airflow pip3 install $PIP_OPTION "${PYT

MWAA_BASE_PROVIDERS_FILE=/mwaa-base-providers-requirements.txt
echo "Installing providers supported for airflow version ${AIRFLOW_VERSION}"
sudo -u airflow pip3 install $PIP_OPTION -r $MWAA_BASE_PROVIDERS_FILE
sudo -u airflow pip3 install --constraint /constraints.txt $PIP_OPTION -r $MWAA_BASE_PROVIDERS_FILE

# jq is used to parse json
yum install -y jq
Expand Down

0 comments on commit 56a84e2

Please sign in to comment.