From dc69c051341d7c10cbf148411d6de8a3174cb49e Mon Sep 17 00:00:00 2001 From: Max Balandat Date: Fri, 3 Jan 2025 11:00:16 -0800 Subject: [PATCH] Pin scipy to <1.15 (#2665) Summary: Scipy 1.15 causes test failures with model fitting, presumably b/c `L-BFGS-B` was ported to C: https://scipy.github.io/devdocs/release/1.15.0-notes.html#scipy-optimize-improvements Pinning this for now to resolve failures, to be fixed (and pin removed) in a bc-fashion in a separate PR. Pull Request resolved: https://github.com/pytorch/botorch/pull/2665 Reviewed By: saitcakmak Differential Revision: D67803366 Pulled By: Balandat fbshipit-source-id: de3db8c5e0e4159be73d51338b82c595b6334759 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 61559fe624..ffe12962c0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,5 @@ gpytorch==1.13 linear_operator==0.5.3 torch>=2.0.1 pyro-ppl>=1.8.4 -scipy +scipy<1.15 multipledispatch