ray/thirdparty/patches/grpc-python.patch
Yi Cheng 3c0a3f4cc1
[grpc] Upgrade grpc to 1.45.2 (#24064)
Upgrade grpc to the newest version to use grpc internal implementation of retry.
2022-04-22 19:15:15 -07:00

8 lines
No EOL
277 B
Diff

178c178
< bash_bin_path = repository_ctx.which("bash")
---
> bash_bin_path = repository_ctx.which("bash" if not _is_windows(repository_ctx) else "sh.exe")
348c348
< "python3",
---
> "python3" if not _is_windows(repository_ctx) else "python.exe",