Skip to content

Commit d0b9310

Browse files
vkarampuditfx-copybara
authored andcommitted
Allow dev and github main versions to depend on corresponding Tensorflow
dev+main versions. PiperOrigin-RevId: 644111145
1 parent 8471f21 commit d0b9310

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,12 @@ def select_constraint(default, nightly=None, git_master=None):
311311
'sacrebleu>=2.3,<4',
312312
'scipy>=1.4.1,<2',
313313
'six>=1.12,<2',
314-
'tensorflow>=2.15,<2.16',
314+
'tensorflow'
315+
+ select_constraint(
316+
default='>=2.15,<2.16',
317+
nightly='>=2.16.0.dev',
318+
git_master='@git+https://github.com/tensorflow/tensorflow@master',
319+
),
315320
'tensorflow-estimator>=2.10',
316321
'tensorflow-metadata'
317322
+ select_constraint(

0 commit comments

Comments
 (0)