This is an automated email from the ASF dual-hosted git repository.
amoghdesai 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 42dd349d4e4 Add aarch64 -> arm64 platform normalization in breeze
(#49484)
42dd349d4e4 is described below
commit 42dd349d4e4099ca71008ed33eb4de647817279a
Author: Dheeraj Turaga <[email protected]>
AuthorDate: Mon Apr 21 06:56:37 2025 -0500
Add aarch64 -> arm64 platform normalization in breeze (#49484)
This is needed so that some breeze commands can be supported on aarch
machines.
---
dev/breeze/src/airflow_breeze/global_constants.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/breeze/src/airflow_breeze/global_constants.py
b/dev/breeze/src/airflow_breeze/global_constants.py
index ccb56e1a11b..3ecd9a73636 100644
--- a/dev/breeze/src/airflow_breeze/global_constants.py
+++ b/dev/breeze/src/airflow_breeze/global_constants.py
@@ -343,7 +343,7 @@ ALL_HISTORICAL_PYTHON_VERSIONS = ["3.6", "3.7", "3.8",
"3.9", "3.10", "3.11", "3
def get_default_platform_machine() -> str:
machine = platform.uname().machine.lower()
# Some additional conversion for various platforms...
- machine = {"x86_64": "amd64"}.get(machine, machine)
+ machine = {"x86_64": "amd64", "aarch64": "arm64"}.get(machine, machine)
return machine