Skip to content

Commit

Permalink
Fix spelling of airflow (apache#37601)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton authored Feb 21, 2024
1 parent f971232 commit 2699f8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dev/README_RELEASE_PYTHON_CLIENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
6 changes: 3 additions & 3 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None:
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
Expand All @@ -167,7 +167,7 @@ def initialize(self, version: str, build_data: dict[str, Any]) -> None:
# 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":
Expand Down

0 comments on commit 2699f8c

Please sign in to comment.