@@ -766,7 +766,7 @@ jobs:
766766
767767 provider-airflow-compatibility-check :
768768 timeout-minutes : 80
769- name : " Providers Airflow 2.3 compatibility check"
769+ name : " Providers Airflow 2.4 compatibility check"
770770 runs-on : " ${{needs.build-info.outputs.runs-on}}"
771771 needs : [build-info, wait-for-ci-images]
772772 env :
@@ -789,10 +789,10 @@ jobs:
789789 run : >
790790 breeze release-management prepare-provider-packages --version-suffix-for-pypi dev0
791791 --package-format wheel ${{ needs.build-info.outputs.affected-providers-list-as-string }}
792- - name : " Fix incompatible 2.3 provider packages"
792+ - name : " Fix incompatible 2.4 provider packages"
793793 run : |
794- # This step should remove the provider packages that are not compatible with 2.3
795- # or replace them with 2.3 compatible versions. Sometimes we have good reasons to bump
794+ # This step should remove the provider packages that are not compatible with 2.4
795+ # or replace them with 2.4 compatible versions. Sometimes we have good reasons to bump
796796 # the min airflow versions for some providers and then we need to add exclusions here.
797797 #
798798 # The Removal can be done with:
@@ -813,15 +813,15 @@ jobs:
813813 providers = json.loads(Path("generated/provider_dependencies.json").read_text())
814814 provider_keys = ",".join(providers.keys())
815815 print("AIRFLOW_EXTRAS={}".format(provider_keys))' >> $GITHUB_ENV
816- - name : " Install and verify all provider packages and airflow on Airflow 2.3 files"
816+ - name : " Install and verify all provider packages and airflow on Airflow 2.4 files"
817817 run : >
818- breeze release-management verify-provider-packages --use-airflow-version 2.3 .0
819- --use-packages-from-dist --airflow-constraints-reference constraints-2.3 .0
818+ breeze release-management verify-provider-packages --use-airflow-version 2.4 .0
819+ --use-packages-from-dist --airflow-constraints-reference constraints-2.4 .0
820820 if : needs.build-info.outputs.affected-providers-list-as-string == ''
821- - name : " Install affected provider packages and airflow on Airflow 2.3 files"
821+ - name : " Install affected provider packages and airflow on Airflow 2.4 files"
822822 run : >
823- breeze release-management install-provider-packages --use-airflow-version 2.3 .0
824- --airflow-constraints-reference constraints-2.3 .0 --run-in-parallel
823+ breeze release-management install-provider-packages --use-airflow-version 2.4 .0
824+ --airflow-constraints-reference constraints-2.4 .0 --run-in-parallel
825825 # Make sure to skip the run if the only provider to be installed has been removed
826826 # in the previous step
827827 if : >
0 commit comments