We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e340632 commit 73f0d24Copy full SHA for 73f0d24
oss_scripts/pip_package/setup.py
@@ -32,7 +32,7 @@
32
from setuptools.dist import Distribution
33
34
project_name = 'tensorflow-text'
35
-project_version = '2.7.0-rc1'
+project_version = '2.7.0'
36
37
38
class BinaryDistribution(Distribution):
@@ -73,7 +73,7 @@ def finalize_options(self):
73
cmdclass={'install': InstallPlatlib},
74
distclass=BinaryDistribution,
75
install_requires=[
76
- 'tensorflow>=2.7.0rc0, <2.8',
+ 'tensorflow>=2.7.0, <2.8',
77
'tensorflow_hub>=0.8.0',
78
],
79
extras_require={
tensorflow_text/__init__.py
@@ -88,4 +88,4 @@
88
]
89
90
remove_undocumented(__name__, _allowed_symbols)
91
-__version__ = "2.7.0-rc1"
+__version__ = "2.7.0"
0 commit comments