From 0ce681b1138da868c93b4a1df8af040aafb46859 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Sun, 10 Dec 2023 16:48:44 +0100 Subject: [PATCH] Fix extra "USE_AIRFLOW_VERSION" variable set in sdist package check When we are testing packages in main, we also test sdist packages, and main is the only build we run it, so when implementing #36131 we had no chance to test it. There was an etra USE_AIRFLOW_VERSION variable set in the job and it caused failed attempt of reinstalling sdist package when entering constraints generation. This variable is now removed, only the --use-airflow-version flags in breeze commands that need it are used. --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 577eccdbbdb32..0e6e3c1b756f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -804,7 +804,6 @@ jobs: env: RUNS_ON: "${{needs.build-info.outputs.runs-on}}" PYTHON_MAJOR_MINOR_VERSION: "${{needs.build-info.outputs.default-python-version}}" - USE_AIRFLOW_VERSION: "sdist" if: > needs.build-info.outputs.canary-run == 'true' && needs.build-info.outputs.skip-provider-tests != 'true'