Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions: gpytorch >= 1.2, torch >= 1.6 #535

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ requirements:
host:
- python>=3.7
run:
- pytorch>=1.5
- gpytorch>=1.1.1
- pytorch>=1.6
- gpytorch>=1.2
- scipy

test:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ Optimization simply use Ax.

**Installation Requirements**
- Python >= 3.7
- PyTorch >= 1.5
- gpytorch >= 1.1.1
- PyTorch >= 1.6
- gpytorch >= 1.2
- scipy


Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Before jumping the gun, we recommend you start with the high-level
#### Installation Requirements:

- Python >= 3.7
- PyTorch >= 1.5
- gpytorch >= 1.1.1
- PyTorch >= 1.6
- gpytorch >= 1.2
- scipy

BoTorch is easily installed via
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ channels:
- pytorch
- gpytorch
dependencies:
- pytorch>=1.5
- gpytorch>=1.1.1
- pytorch>=1.6
- gpytorch>=1.2
- scipy
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
install_requires=["torch>=1.5", "gpytorch>=1.1.1", "scipy"],
install_requires=["torch>=1.6", "gpytorch>=1.2", "scipy"],
packages=find_packages(),
extras_require={
"dev": DEV_REQUIRES,
Expand Down