Skip to content

Commit

Permalink
Update README_RELEASE_PROVIDER_PACKAGES.md (apache#36115)
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkal authored Dec 7, 2023
1 parent 3b978f2 commit a315165
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/README_RELEASE_PROVIDER_PACKAGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ You can read more about the command line tools used to generate the packages in
# Bump min Airflow version for providers

1. Update `BASE_PROVIDERS_COMPATIBILITY_CHECKS` in `src/airflow_breeze/global_constants.py` to remove
the versions of Airflow that are not applicable any more.
the versions of Airflow that are not applicable anymore.

2. Check if Breeze unit tests in `dev/breeze/tests/test_packages.py` need adjustments. This is done by simply
searching and replacing old version occurrences with newer one. For example 2.5.0 to 2.6.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ def _get_changes_classified(
classified_changes = ClassifiedChanges()
for change in changes:
# Special cases
if "Bump minimum Airflow version in providers" in change.message.lower():
if "bump minimum Airflow version in providers" in change.message.lower():
classified_changes.misc.append(change)
# General cases
elif "fix" in change.message.lower():
Expand Down

0 comments on commit a315165

Please sign in to comment.