Skip to content

Commit d235b2b

Browse files
committed
Allow dev and github main versions to depend on corresponding Tensorflow
dev+main versions. PiperOrigin-RevId: 631851771
1 parent 9cfefc2 commit d235b2b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ def select_constraint(default, nightly=None, git_master=None):
187187
'pyarrow>=10,<11',
188188
'pyfarmhash>=0.2.2,<0.4',
189189
'six>=1.12,<2',
190-
'tensorflow>=2.15,<2.16',
190+
'tensorflow' + select_constraint(
191+
default='>=2.15,<2.16',
192+
nightly='>=2.16.0.dev',
193+
git_master='@git+https://github.com/tensorflow/tensorflow@master'),
191194
'tensorflow-metadata' + select_constraint(
192195
default='>=1.15.0,<1.16',
193196
nightly='>=1.16.0.dev',

0 commit comments

Comments
 (0)