Skip to content

Commit

Permalink
Update metadata.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez authored Sep 13, 2023
1 parent 866c9a1 commit f429394
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions conda_build/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,9 @@ def get_selectors(config: Config) -> dict[str, bool]:
linux64=bool(plat == "linux-64"),
emscripten=plat.startswith("emscripten-"),
wasi=plat.startswith("wasi-"),
unix=plat.startswith(("linux-", "osx-", "emscripten-")),
arm=plat.startswith("linux-arm"),
osx=plat.startswith("osx-"),
unix=plat.startswith(("linux-", "osx-")),
unix=plat.startswith(("linux-", "osx-", "emscripten-")),
win=plat.startswith("win-"),
win32=bool(plat == "win-32"),
win64=bool(plat == "win-64"),
Expand Down

0 comments on commit f429394

Please sign in to comment.