We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a547c commit a1ff905Copy full SHA for a1ff905
package/tfdep.bzl
@@ -3,12 +3,12 @@
3
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4
5
def tf_setup():
6
- """Define tensorflow>=2.6.0 dependency for Bazel build."""
+ """Define tensorflow>=2.8.0 dependency for Bazel build."""
7
http_archive(
8
name = "org_tensorflow",
9
- sha256 = "41b32eeaddcbc02b0583660bcf508469550e4cd0f86b22d2abe72dfebeacde0f",
+ sha256 = "66b953ae7fba61fd78969a2e24e350b26ec116cf2e6a7eb93d02c63939c6f9f7",
10
urls = [
11
- "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.6.0.tar.gz",
+ "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.8.0.tar.gz",
12
],
13
- strip_prefix = "tensorflow-2.6.0",
+ strip_prefix = "tensorflow-2.8.0",
14
)
0 commit comments