Pin tensorflow-probability to a specific version.

This matches the documentation for specifying version for this project. Additionally, recent version of `tensorflow-probability` are releasing breaking changes and the existing version specifier allows these to breaking changes to be unintentionally pulled in.

PiperOrigin-RevId: 476443999
This commit is contained in:
Michael Reneer 2022-09-23 13:04:14 -07:00 committed by A. Unique TensorFlower
parent c6c3334b57
commit feddd28a63
2 changed files with 2 additions and 2 deletions

View file

@ -32,5 +32,5 @@ scikit-learn>=1.0,==1.*
scipy~=1.7
tensorflow-datasets~=4.5
tensorflow-estimator~=2.4
tensorflow-probability~=0.15
tensorflow-probability==0.15.0
tensorflow~=2.4

View file

@ -38,7 +38,7 @@ setup(
'scipy~=1.7',
'tensorflow-datasets~=4.5',
'tensorflow-estimator~=2.4',
'tensorflow-probability~=0.15',
'tensorflow-probability==0.15.0',
'tensorflow~=2.4',
],
packages=find_packages())