We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e6f60 commit 3a1d3c7Copy full SHA for 3a1d3c7
vinca/generate_azure.py
@@ -487,7 +487,7 @@ def main():
487
azure_template["stages"] = azure_stages
488
489
if args.platform == "osx-arm64" and len(azure_stages):
490
- with open("osx-arm64.yml", "w") as fo:
+ with open("osx_arm64.yml", "w") as fo:
491
fo.write(yaml.dump(azure_template, sort_keys=False))
492
493
# Build aarch64 pipeline
vinca/main.py
@@ -46,7 +46,10 @@ def get_conda_subdir():
46
else:
47
raise RuntimeError("Unknown machine!")
48
elif sys_platform == "darwin":
49
- return "osx-64"
+ if machine == "arm64":
50
+ return "osx-arm64"
51
+ else:
52
+ return "osx-64"
53
elif sys_platform == "win32":
54
return "win-64"
55
0 commit comments