Skip to content

Commit

Permalink
Bump botorch and python version dependencies (#389)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #389

BoTorch requires >=3.10, while lower versions of python seem to work, we shouldn't expect them to. Readme updated to reflect this.

Botorch version bumped to latest at 0.12.0.

Reviewed By: crasanders

Differential Revision: D63420727

fbshipit-source-id: 3a6afff4f16ff5f8ba65cf1be072197a0bb6d142
  • Loading branch information
JasonKChow authored and facebook-github-bot committed Sep 26, 2024
1 parent 017e168 commit d975192
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
AEPsych is a framework and library for adaptive experimetation in psychophysics and related domains.

## Installation
`AEPsych` only supports python 3.8+. We recommend installing `AEPsych` under a virtual environment like
`AEPsych` only supports python 3.10+. We recommend installing `AEPsych` under a virtual environment like
[Anaconda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html).
Once you've created a virtual environment for `AEPsych` and activated it, you can install `AEPsych` using pip:

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"pandas",
"aepsych_client==0.3.0",
"statsmodels",
"botorch==0.11.0",
"botorch==0.12.0",
]

BENCHMARK_REQUIRES = ["tqdm", "pathos", "multiprocess"]
Expand Down Expand Up @@ -51,7 +51,7 @@
setup(
name="aepsych",
version=version,
python_requires=">=3.8",
python_requires=">=3.10",
packages=find_packages(),
description="Adaptive experimetation for psychophysics",
long_description=long_description,
Expand Down

0 comments on commit d975192

Please sign in to comment.