File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ http_archive(
73
73
patch_args = ["-p1" ],
74
74
patches = ["//third_party/tensorflow:tf.patch" ],
75
75
strip_prefix = "tensorflow-f21d60a1667c4a52399986809e8e9aedac0e24c2" ,
76
- sha256 = "35fd0d69969f482edcc1e46d2d07c43a16ee02cfef1396b11a71b719674a1c8a " ,
76
+ sha256 = "45b722efebb4355159eac54f6520675c42ee7c3c21670abf0a371e66210bf8bd " ,
77
77
urls = [
78
78
"https://github.com/tensorflow/tensorflow/archive/f21d60a1667c4a52399986809e8e9aedac0e24c2.zip"
79
79
],
Original file line number Diff line number Diff line change 48
48
if [[ x" $( arch) " == x" arm64" ]]; then
49
49
pip install tensorflow-macos==2.13.0
50
50
else
51
- pip install tensorflow==2.13.0
51
+ pip install tensorflow==2.15.0rc0
52
52
fi
53
53
else
54
- pip install tensorflow==2.13.0
54
+ pip install tensorflow==2.15.0rc0
55
55
fi
56
56
fi
57
57
@@ -61,10 +61,10 @@ if is_windows; then
61
61
fi
62
62
63
63
# Copy the current bazelversion of TF.
64
- curl https://raw.githubusercontent.com/tensorflow/tensorflow/master /.bazelversion -o .bazelversion
64
+ curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.15 /.bazelversion -o .bazelversion
65
65
66
66
# Copy the building configuration of TF.
67
- curl https://raw.githubusercontent.com/tensorflow/tensorflow/master /.bazelrc -o .bazelrc
67
+ curl https://raw.githubusercontent.com/tensorflow/tensorflow/r2.15 /.bazelrc -o .bazelrc
68
68
# This line breaks Windows builds, so we remove it.
69
69
sed -i -e ' s/build --noincompatible_remove_legacy_whole_archive//' .bazelrc
70
70
Original file line number Diff line number Diff line change 32
32
from setuptools .dist import Distribution
33
33
34
34
project_name = 'tensorflow-text'
35
- project_version = '2.13.0 '
35
+ project_version = '2.15.0-rc0 '
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -74,11 +74,11 @@ def finalize_options(self):
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
76
(
77
- 'tensorflow>=2.13.0 , <2.14 ; platform_machine != "arm64" or'
77
+ 'tensorflow>=2.15.0rc0 , <2.16 ; platform_machine != "arm64" or'
78
78
' platform_system != "Darwin"'
79
79
),
80
80
(
81
- 'tensorflow-macos>=2.13.0 , <2.14 ; platform_machine == "arm64" and'
81
+ 'tensorflow-macos>=2.15.0rc0 , <2.16 ; platform_machine == "arm64" and'
82
82
' platform_system == "Darwin"'
83
83
),
84
84
'tensorflow_hub>=0.13.0' ,
Original file line number Diff line number Diff line change 110
110
]
111
111
112
112
remove_undocumented (__name__ , _allowed_symbols )
113
- __version__ = "2.13.0 "
113
+ __version__ = "2.15.0-rc0 "
You can’t perform that action at this time.
0 commit comments