Skip to content

Commit 1c0747c

Browse files
saitcakmakfacebook-github-bot
authored andcommitted
Require torch >= 1.12 (#1699)
Summary: Pull Request resolved: #1699 In `test/utils/probability/test_utils.py`, we compare `log_ndtr` implementation with `torch.special.log_ndtr`, which is was introduced in 1.12. Reviewed By: esantorella Differential Revision: D43545624 fbshipit-source-id: 4b963b128601ee72c4932fed0325ef79ac5b27bf
1 parent d935d10 commit 1c0747c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ requirements:
1717
- setuptools
1818
- setuptools_scm
1919
run:
20-
- pytorch >=1.11
20+
- pytorch >=1.12
2121
- gpytorch ==1.9.1
2222
- linear_operator ==0.3.0
2323
- scipy

README.md

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

5757
**Installation Requirements**
5858
- Python >= 3.8
59-
- PyTorch >= 1.11
59+
- PyTorch >= 1.12
6060
- gpytorch == 1.9.1
6161
- linear_operator == 0.3.0
6262
- pyro-ppl >= 1.8.4

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- gpytorch
55
- conda-forge
66
dependencies:
7-
- pytorch>=1.11
7+
- pytorch>=1.12
88
- gpytorch==1.9.1
99
- linear_operator==0.3.0
1010
- scipy

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
multipledispatch
22
scipy
3-
torch>=1.11
3+
torch>=1.12
44
pyro-ppl>=1.8.4
55
gpytorch==1.9.1
66
linear_operator==0.3.0

0 commit comments

Comments
 (0)