Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions scripts/test/integration-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ airflow db reset -y
AIRFLOW_VERSION=$(airflow version)
AIRFLOW_MAJOR_VERSION=$(echo "$AIRFLOW_VERSION" | cut -d. -f1)
if [ "$AIRFLOW_MAJOR_VERSION" -ge 3 ]; then
# https://github.com/zmievsa/cadwyn/issues/283
uv pip install "cadwyn>=5.4.1"
# https://github.com/zmievsa/cadwyn/issues/283, hence kept cadwyn>=5.4.1
# https://github.com/zmievsa/cadwyn/issues/305, hence kept fastapi<0.121.0
uv pip install "cadwyn>=5.4.1" "fastapi<0.121.0"
echo "Detected Airflow $AIRFLOW_VERSION. Running 'airflow db migrate'..."
airflow db migrate
else
Expand Down