Skip to content

Commit 8b038d2

Browse files
sdaultonfacebook-github-bot
authored andcommitted
require PyTorch 1.2 (#225)
Summary: Pull Request resolved: #225 require pytorch 1.2 to incorporate changes regarding bool tensors Reviewed By: Balandat Differential Revision: D16725568 fbshipit-source-id: 161c50cc410c3273ef38c960c4274ec6a88b9d24
1 parent 1e32851 commit 8b038d2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ requirements:
1515
host:
1616
- python>=3.6
1717
run:
18-
- pytorch>=1.1
18+
- pytorch>=1.2
1919
- gpytorch>=0.3.4
2020
- scipy
2121

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Optimization simply use Ax.
5050

5151
**Installation Requirements**
5252
- Python >= 3.6
53-
- PyTorch >= 1.1
53+
- PyTorch >= 1.2
5454
- gpytorch >= 0.3.4
5555
- scipy
5656

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Before jumping the gun, we recommend you start with the high-level
1414
#### Installation Requirements:
1515

1616
- Python >= 3.6
17-
- PyTorch >= 1.1
17+
- PyTorch >= 1.2
1818
- gpytorch >= 0.3.4
1919
- scipy
2020

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ channels:
33
- pytorch
44
- gpytorch
55
dependencies:
6-
- pytorch>=1.1
6+
- pytorch>=1.2
77
- gpytorch>=0.3.4
88
- scipy

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",
6666
python_requires=">=3.6",
67-
install_requires=["torch>=1.1", "gpytorch>=0.3.4", "scipy"],
67+
install_requires=["torch>=1.2", "gpytorch>=0.3.4", "scipy"],
6868
packages=find_packages(),
6969
extras_require={
7070
"dev": DEV_REQUIRES,

0 commit comments

Comments
 (0)