File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ http_archive(
9797 urls = [
9898 "https://github.com/tensorflow/tensorflow/archive/v2.4.0-rc4.zip"
9999 ],
100+ patches = ["//third_party/tensorflow:tf.patch" ],
101+ patch_args = ["-p1" ],
100102)
101103
102104http_archive (
Original file line number Diff line number Diff line change 1+ diff --git a/third_party/remote_config/common.bzl b/third_party/remote_config/common.bzl
2+ index d7e69326205..6f5a4f8c3e0 100644
3+ --- a/third_party/remote_config/common.bzl
4+ +++ b/third_party/remote_config/common.bzl
5+ @@ -42,11 +42,6 @@ def get_python_bin(repository_ctx):
6+ if python_bin != None:
7+ return python_bin
8+
9+ - # First check for an explicit "python3"
10+ - python_bin = which(repository_ctx, "python3")
11+ - if python_bin != None:
12+ - return python_bin
13+ -
14+ # Some systems just call pythone3 "python"
15+ python_bin = which(repository_ctx, "python")
16+ if python_bin != None:
You can’t perform that action at this time.
0 commit comments