We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf7bef commit 34a6eb4Copy full SHA for 34a6eb4
setup.py
@@ -8,18 +8,9 @@
8
9
from setuptools import find_packages, setup
10
11
-PINNED_BOTORCH_VERSION = "0.14.0"
12
-
13
-if os.environ.get("ALLOW_BOTORCH_LATEST"):
14
- # allows a more recent previously installed version of botorch to remain
15
- # if there is no previously installed version, installs the latest release
16
- botorch_req = f"botorch>={PINNED_BOTORCH_VERSION}"
17
-else:
18
- botorch_req = f"botorch=={PINNED_BOTORCH_VERSION}"
19
20
21
REQUIRES = [
22
- botorch_req,
+ "botorch @ git+https://github.com/Radical-AI/botorch.git@6fb6da0044fa57018e87735dc6deb6ba177e0130",
23
"jinja2", # also a Plotly dep
24
"pandas",
25
"scipy",
0 commit comments