Skip to content

Commit 1bdaee6

Browse files
authored
v1_selectors: add missing selectors for the os part (#85)
1 parent df7f973 commit 1bdaee6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vinca/v1_selectors.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ def _platform_flags(platform: str | None) -> dict[str, bool | str]:
5555
"linux": os_part == "linux",
5656
"osx": os_part == "osx",
5757
"win": os_part == "win",
58+
"emscripten": os_part == "emscripten",
59+
"wasi": os_part == "wasi",
60+
"freebsd": os_part == "freebsd",
61+
"zos": os_part == "zos",
5862
"unix": os_part in {"linux", "osx", "emscripten", "wasi", "freebsd", "zos"},
5963
# x86
6064
"x86": arch in {"32", "64"},

0 commit comments

Comments
 (0)