From 60a69598538a579f2d83494c5e6d972f0a4e9074 Mon Sep 17 00:00:00 2001 From: Steve Mandala Date: Tue, 8 Dec 2020 09:16:02 -0800 Subject: [PATCH] Bump min botorch version (#444) Summary: Pull Request resolved: https://github.com/facebook/Ax/pull/444 To make the new contextual libraries happy, bump the botorch version (see failures in: https://fburl.com/kbkoen5s) Reviewed By: lena-kashtelyan Differential Revision: D25397593 fbshipit-source-id: c711ebb9d99477b5070d3758251d1d4a8b699b7a --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 877d66abc53..9ef1a1b60cb 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup -MIN_BOTORCH_VERSION = "0.3.2" +MIN_BOTORCH_VERSION = "0.3.3" REQUIRES = [ f"botorch>={MIN_BOTORCH_VERSION}",