From 13a79f419f17aea16b12cd46231f35ab026e063b Mon Sep 17 00:00:00 2001 From: Michael Reneer Date: Fri, 11 Feb 2022 09:51:36 -0800 Subject: [PATCH] Update the direct `tensorflow-probability` dependency to `~=0.15.0`. This means that we would accept a hot fix, but not accept major or minor version changes without releasing TFP. PiperOrigin-RevId: 428025242 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 1694e6f..d6cfb1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,5 +9,5 @@ scipy~=1.2.1 sklearn~=1.0.2 tensorflow-datasets~=4.5.2 tensorflow-estimator>=2.3.0 -tensorflow-probability>=0.13.0 +tensorflow-probability~=0.15.0 tensorflow>=1.14 diff --git a/setup.py b/setup.py index 0f1880b..98a6f97 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( 'sklearn~=1.0.2', 'tensorflow-datasets~=4.5.2', 'tensorflow-estimator>=2.3.0', - 'tensorflow-probability>=0.13.0', + 'tensorflow-probability~=0.15.0', ], # Explicit dependence on TensorFlow is not supported. # See https://github.com/tensorflow/tensorflow/issues/7166