Skip to content

Commit b5d2f27

Browse files
saitcakmakfacebook-github-bot
authored andcommitted
Pin GPyTorch==1.9.0 & linear_operator==0.1.1 (#1397)
Summary: Pull Request resolved: #1397 title (Note: this ignores all push blocking failures!) Reviewed By: lena-kashtelyan Differential Revision: D39486441 fbshipit-source-id: 364e76b1f0cc78c5c22394c80b48d1aee0844a4d
1 parent 5f2028d commit b5d2f27

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.conda/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ requirements:
1818
- setuptools_scm
1919
run:
2020
- pytorch >=1.11
21-
- gpytorch >=1.9.0
21+
- gpytorch ==1.9.0
22+
- linear_operator ==0.1.1
2223
- scipy
2324
- pyro-ppl >=1.8.2
2425

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ Optimization simply use Ax.
5757
**Installation Requirements**
5858
- Python >= 3.8
5959
- PyTorch >= 1.11
60-
- gpytorch >= 1.9.0
60+
- gpytorch == 1.9.0
61+
- linear_operator == 0.1.1
6162
- pyro-ppl >= 1.8.2
6263
- scipy
6364
- multiple-dispatch

docs/getting_started.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Before jumping the gun, we recommend you start with the high-level
1515

1616
- Python >= 3.8
1717
- PyTorch >= 1.11
18-
- gpytorch >= 1.9.0
18+
- gpytorch == 1.9.0
19+
- linear_operator == 0.1.1
1920
- scipy
2021
- multiple-dispatch
2122
- pyro-ppl >= 1.8.2

environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ channels:
55
- conda-forge
66
dependencies:
77
- pytorch>=1.11
8-
- gpytorch>-1.9.0
8+
- gpytorch==1.9.0
9+
- gpytorch==0.1.1
910
- scipy
1011
- pyro-ppl>=1.8.2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
packages=find_packages(exclude=["test", "test.*"]),
8383
install_requires=[
8484
"torch>=1.11",
85-
"gpytorch>=1.9.0",
85+
"gpytorch==1.9.0",
86+
"linear_operator==0.1.1",
8687
"scipy",
8788
"multipledispatch",
8889
"pyro-ppl>=1.8.2",

0 commit comments

Comments
 (0)