mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 03:23:00 +00:00
Simplify unify_aarch64
This commit is contained in:
@@ -20,13 +20,9 @@ LOGGER = logging.getLogger(__name__)
|
||||
|
||||
def unify_aarch64(platform: str) -> str:
|
||||
"""
|
||||
Renames arm64->aarch64 to support local builds on on aarch64 Macs
|
||||
Renames arm64->aarch64 to support local builds on aarch64 Macs
|
||||
"""
|
||||
return {
|
||||
"aarch64": "aarch64",
|
||||
"arm64": "aarch64",
|
||||
"x86_64": "x86_64",
|
||||
}[platform]
|
||||
return {"arm64": "aarch64"}.get(platform, platform)
|
||||
|
||||
|
||||
def get_latest_julia_url() -> tuple[str, str]:
|
||||
|
Reference in New Issue
Block a user