From ee4c9c91ad5a7eeb40503cddcb51ee0698ff4b6c Mon Sep 17 00:00:00 2001 From: Yifan Wang Date: Mon, 11 Dec 2023 21:25:47 -0800 Subject: [PATCH] Update setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 15db53d..a6c32b4 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setuptools.setup( name="nextorch", - version="0.1.0", + version="0.2.2", author="Vlachos Research Group", author_email="vlachos@udel.edu", description="Experimental design and Bayesian optimization library in Python/PyTorch", @@ -35,8 +35,8 @@ python_requires=">=3.7", install_requires=[ "torch>=1.8", - "gpytorch>=1.4", - "botorch>=0.4.0", + "gpytorch<=1.4", + "botorch<=0.4.0", "matplotlib>=3.1.1", "pyDOE2>=1.3.0", "numpy>=1.19.2", @@ -51,4 +51,4 @@ "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Chemistry", ], -) \ No newline at end of file +)