You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by vi...@apache.org on 2024/02/21 19:43:04 UTC

(airflow) branch main updated: Fix spelling of `airflow` (#37601)

This is an automated email from the ASF dual-hosted git repository.

vincbeck 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 2699f8ce39 Fix spelling of `airflow` (#37601)
2699f8ce39 is described below

commit 2699f8ce3918508dfed9d7879368a8d645f262bf
Author: John Bampton <jb...@users.noreply.github.com>
AuthorDate: Thu Feb 22 05:42:56 2024 +1000

    Fix spelling of `airflow` (#37601)
---
 dev/README_RELEASE_PYTHON_CLIENT.md | 2 +-
 hatch_build.py                      | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev/README_RELEASE_PYTHON_CLIENT.md b/dev/README_RELEASE_PYTHON_CLIENT.md
index f709139737..e002661e45 100644
--- a/dev/README_RELEASE_PYTHON_CLIENT.md
+++ b/dev/README_RELEASE_PYTHON_CLIENT.md
@@ -161,7 +161,7 @@ cd airflow-dev/clients/python
 svn mkdir ${VERSION}${VERSION_SUFFIX}
 
 # Move the artifacts to svn folder & commit
-mv ${AIRLFOW_REPO_ROOT}/dist/apache_airflow_client-* ${VERSION}${VERSION_SUFFIX}/
+mv ${AIRFLOW_REPO_ROOT}/dist/apache_airflow_client-* ${VERSION}${VERSION_SUFFIX}/
 cd ${VERSION}${VERSION_SUFFIX}
 svn add *
 svn commit -m "Add artifacts for Apache Airflow Python Client ${VERSION}${VERSION_SUFFIX}"
diff --git a/hatch_build.py b/hatch_build.py
index 34a9ef8e27..d92587737f 100644
--- a/hatch_build.py
+++ b/hatch_build.py
@@ -153,11 +153,11 @@ class CustomBuildHook(BuildHookInterface[BuilderConfig]):
         Any modifications to the build data will be seen by the build target.
         """
         if version == "standard":
-            all_possible_non_airlfow_dependencies = []
+            all_possible_non_airflow_dependencies = []
             for extra, deps in self.metadata.core.optional_dependencies.items():
                 for dep in deps:
                     if not dep.startswith("apache-airflow"):
-                        all_possible_non_airlfow_dependencies.append(dep)
+                        all_possible_non_airflow_dependencies.append(dep)
             # remove devel dependencies from optional dependencies for standard packages
             self.metadata.core._optional_dependencies = {
                 key: value
@@ -167,7 +167,7 @@ class CustomBuildHook(BuildHookInterface[BuilderConfig]):
             # This is the special dependency in wheel package that is used to install all possible
             # 3rd-party dependencies for airflow for the CI image. It is exposed in the wheel package
             # because we want to use for building the image cache from GitHub URL.
-            self.metadata.core._optional_dependencies["devel-ci"] = all_possible_non_airlfow_dependencies
+            self.metadata.core._optional_dependencies["devel-ci"] = all_possible_non_airflow_dependencies
             # Replace editable dependencies with provider dependencies for provider packages
             for dependency_id in DEPENDENCIES.keys():
                 if DEPENDENCIES[dependency_id]["state"] != "ready":