From de18d48ddbbed95ee492e95936e9480bdf287a17 Mon Sep 17 00:00:00 2001 From: Bernie Beckerman Date: Wed, 30 Jun 2021 11:38:51 -0700 Subject: [PATCH] pin latest botorch release before releasing Ax Summary: Bump the botorch version per step 3 [here](https://www.internalfb.com/intern/wiki/AE/DeveloperGuide/Open_Source/release/) Reviewed By: lena-kashtelyan Differential Revision: D29493329 fbshipit-source-id: ea42cd1ddb9777b1f6ca86c53abd0b7f0800f774 --- .github/workflows/deploy.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9777ff06faf..0b09158a45a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies (pinned Botorch) run: | # TODO: read pinned Botorch version from a shared source - pip install botorch==0.4.0 + pip install botorch==0.5.0 pip install -e .[dev,mysql,notebook] if: matrix.botorch == 'pinned' - name: Import Ax diff --git a/setup.py b/setup.py index 719879dfcd6..892f2a1a211 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import find_packages, setup # TODO: read pinned Botorch version from a shared source -PINNED_BOTORCH_VERSION = "0.4.0" +PINNED_BOTORCH_VERSION = "0.5.0" if os.environ.get("ALLOW_BOTORCH_LATEST"): # allows installing using a more recent botorch dev version