diff --git a/.conda/meta.yaml b/.conda/meta.yaml index b2892fdbb2..136d52936b 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -16,8 +16,8 @@ requirements: - python>=3.7 - setuptools_scm run: - - pytorch>=1.6 - - gpytorch>=1.2 + - pytorch>=1.7.1 + - gpytorch>=1.4 - scipy test: diff --git a/README.md b/README.md index 1f10f095a3..f81b87fc8c 100644 --- a/README.md +++ b/README.md @@ -55,8 +55,8 @@ Optimization simply use Ax. **Installation Requirements** - Python >= 3.7 -- PyTorch >= 1.7 -- gpytorch >= 1.3 +- PyTorch >= 1.7.1 +- gpytorch >= 1.4 - scipy diff --git a/docs/getting_started.md b/docs/getting_started.md index 54c3c0998b..cc92b0517b 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -14,8 +14,8 @@ Before jumping the gun, we recommend you start with the high-level #### Installation Requirements: - Python >= 3.7 -- PyTorch >= 1.7 -- gpytorch >= 1.3 +- PyTorch >= 1.7.1 +- gpytorch >= 1.4 - scipy BoTorch is easily installed via diff --git a/environment.yml b/environment.yml index 108de0a610..b1127f39db 100644 --- a/environment.yml +++ b/environment.yml @@ -3,6 +3,6 @@ channels: - pytorch - gpytorch dependencies: - - pytorch>=1.7 - - gpytorch>=1.3 + - pytorch>=1.7.1 + - gpytorch>=1.4 - scipy diff --git a/setup.py b/setup.py index 18263a99c4..996f9ed0cc 100755 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ else "node-and-date" ), }, - install_requires=["torch>=1.7.1", "gpytorch>=1.3", "scipy"], + install_requires=["torch>=1.7.1", "gpytorch>=1.4", "scipy"], packages=find_packages(), extras_require={ "dev": DEV_REQUIRES,