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

Function is_invalid_windows_platform

python/setup.py:424–429  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

422
423
424def is_invalid_windows_platform():
425 # 'GCC' check is how you detect MinGW:
426 # https://github.com/msys2/MINGW-packages/blob/abd06ca92d876b9db05dd65f27d71c4ebe2673a9/mingw-w64-python2/0410-MINGW-build-extensions-with-GCC.patch#L53
427 platform = sys.platform
428 ver = sys.version
429 return platform == "msys" or (platform == "win32" and ver and "GCC" in ver)
430
431
432def _find_bazel_bin():

Callers 1

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…