From 592ed995f1f6272e7087ba1b67d101525ef54192 Mon Sep 17 00:00:00 2001 From: Michael Reneer Date: Thu, 10 Feb 2022 21:19:29 -0800 Subject: [PATCH] Update the direct `scipy` dependency to `~=1.2.1`. This means that we would accept a hot fix, but not accept major or minor version changes without releasing TFP. PiperOrigin-RevId: 427916084 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e204079..36aab79 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,7 +5,7 @@ matplotlib~=3.3.4 mpmath numpy~=1.21.5 pandas~=1.1.4 -scipy>=0.17 +scipy~=1.2.1 tensorflow-datasets>=4.4.0 tensorflow-estimator>=2.3.0 tensorflow-probability>=0.13.0 diff --git a/setup.py b/setup.py index d8dab16..49c4330 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( 'matplotlib~=3.3.4', 'numpy~=1.21.5', 'pandas~=1.1.4', - 'scipy>=0.17', + 'scipy~=1.2.1', 'tensorflow-datasets>=4.4.0', 'tensorflow-estimator>=2.3.0', 'tensorflow-probability>=0.13.0',