File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -63,10 +63,10 @@ http_archive(
63
63
64
64
http_archive (
65
65
name = "org_tensorflow" ,
66
- strip_prefix = "tensorflow-2.9.0 " ,
67
- sha256 = "fd6fae5aa9014cb898c1cca1e44158d0d0ba5cbe9385eab50a1c3f62660fa101 " ,
66
+ strip_prefix = "tensorflow-2.10.0-rc0 " ,
67
+ sha256 = "93ddae31e681787b6560e443c472f70bfa1bcd3ad577f4c67f5146c7454d3cd2 " ,
68
68
urls = [
69
- "https://github.com/tensorflow/tensorflow/archive/v2.9.0 .zip"
69
+ "https://github.com/tensorflow/tensorflow/archive/v2.10.0-rc0 .zip"
70
70
],
71
71
)
72
72
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.9.0
50
50
else
51
- pip install tensorflow==2.9.0
51
+ pip install tensorflow==2.10.0rc0
52
52
fi
53
53
else
54
- pip install tensorflow==2.9.0
54
+ pip install tensorflow==2.10.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.10 /.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.10 /.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.9.0 '
35
+ project_version = '2.10.0-rc0 '
36
36
37
37
38
38
class BinaryDistribution (Distribution ):
@@ -73,12 +73,12 @@ def finalize_options(self):
73
73
cmdclass = {'install' : InstallPlatlib },
74
74
distclass = BinaryDistribution ,
75
75
install_requires = [
76
- 'tensorflow>=2.9.0 , <2.10 ; platform_machine != "arm64" or platform_system != "Darwin"' ,
77
- 'tensorflow-macos>=2.9.0 , <2.10 ; platform_machine == "arm64" and platform_system == "Darwin"' ,
76
+ 'tensorflow>=2.10.0rc0 , <2.11 ; platform_machine != "arm64" or platform_system != "Darwin"' ,
77
+ 'tensorflow-macos>=2.10.0rc0 , <2.11 ; platform_machine == "arm64" and platform_system == "Darwin"' ,
78
78
'tensorflow_hub>=0.8.0' ,
79
79
],
80
80
extras_require = {
81
- 'tensorflow_cpu' : ['tensorflow-cpu>=2.9.0 , <2.10 ' ,],
81
+ 'tensorflow_cpu' : ['tensorflow-cpu>=2.10.0rc0 , <2.11 ' ,],
82
82
'tests' : [
83
83
'absl-py' ,
84
84
'pytest' ,
Original file line number Diff line number Diff line change 98
98
]
99
99
100
100
remove_undocumented (__name__ , _allowed_symbols )
101
- __version__ = "2.9.0 "
101
+ __version__ = "2.10.0-rc0 "
You can’t perform that action at this time.
0 commit comments