MCPcopy
hub / github.com/ray-project/ray / is_native_windows_or_msys

Function is_native_windows_or_msys

python/setup.py:418–421  ·  view source on GitHub ↗

Check to see if we are running on native Windows, but NOT WSL (which is seen as Linux).

()

Source from the content-addressed store, hash-verified

416
417
418def is_native_windows_or_msys():
419 """Check to see if we are running on native Windows,
420 but NOT WSL (which is seen as Linux)."""
421 return sys.platform == "msys" or sys.platform == "win32"
422
423
424def is_invalid_windows_platform():

Callers 3

setup.pyFile · 0.85
buildFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…