This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new a315165719 Update README_RELEASE_PROVIDER_PACKAGES.md (#36115)
a315165719 is described below
commit a315165719f950c5d13493b6138c6d6eba7929ae
Author: Elad Kalif <[email protected]>
AuthorDate: Fri Dec 8 01:38:36 2023 +0200
Update README_RELEASE_PROVIDER_PACKAGES.md (#36115)
---
dev/README_RELEASE_PROVIDER_PACKAGES.md | 2 +-
.../src/airflow_breeze/prepare_providers/provider_documentation.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev/README_RELEASE_PROVIDER_PACKAGES.md
b/dev/README_RELEASE_PROVIDER_PACKAGES.md
index 6a7e25f150..4cfbcfa916 100644
--- a/dev/README_RELEASE_PROVIDER_PACKAGES.md
+++ b/dev/README_RELEASE_PROVIDER_PACKAGES.md
@@ -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
diff --git
a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
index da44246cea..de85183f46 100644
--- a/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
+++ b/dev/breeze/src/airflow_breeze/prepare_providers/provider_documentation.py
@@ -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():