Skip to content

Commit

Permalink
The minimum version of Airflow supported by apache-airflow-providers-…
Browse files Browse the repository at this point in the history
…cncf-kubernetes is 2.7
  • Loading branch information
tatiana committed Oct 31, 2024
1 parent 0b4d20d commit 830bde5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/test/pre-install-airflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,14 @@ uv pip install pydantic --constraint /tmp/constraint.txt

if [ "$AIRFLOW_VERSION" = "2.7" ] || [ "$AIRFLOW_VERSION" = "2.6" ]; then
uv pip install "apache-airflow-providers-amazon[s3fs]" --constraint /tmp/constraint.txt
uv pip install "apache-airflow-providers-cncf-kubernetes" --constraint /tmp/constraint.txt
uv pip install "apache-airflow-providers-docker" --constraint /tmp/constraint.txt
uv pip install "apache-airflow-providers-google" --constraint /tmp/constraint.txt
uv pip install "apache-airflow-providers-microsoft-azure" --constraint /tmp/constraint.txt
uv pip install "apache-airflow-providers-postgres" --constraint /tmp/constraint.txt
fi

if [ "$AIRFLOW_VERSION" = "2.7" ] ; then
uv pip install "apache-airflow-providers-cncf-kubernetes" --constraint /tmp/constraint.txt
fi

rm /tmp/constraint.txt

0 comments on commit 830bde5

Please sign in to comment.