Skip to content

Commit ded2905

Browse files
committed
fixed version to < 2.2
1 parent ed72b8b commit ded2905

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oss_scripts/pip_package/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from setuptools.dist import Distribution
3333

3434
project_name = 'tensorflow-text'
35-
project_version = '2.1.0'
35+
project_version = '2.1.1'
3636

3737

3838
class BinaryDistribution(Distribution):
@@ -73,11 +73,11 @@ def finalize_options(self):
7373
cmdclass={'install': InstallPlatlib},
7474
distclass=BinaryDistribution,
7575
install_requires=[
76-
'tensorflow>=2.1.0, <2.1',
76+
'tensorflow>=2.1.0, <2.2',
7777
],
7878
extras_require={
7979
'tensorflow_gpu': [
80-
'tensorflow-gpu>=2.1.0, <2.1',
80+
'tensorflow-gpu>=2.1.0, <2.2',
8181
],
8282
'tests': [
8383
'absl-py',

0 commit comments

Comments
 (0)