From c09c43e82ec617b8be0a035fc1212f99c76d5407 Mon Sep 17 00:00:00 2001 From: Sait Cakmak Date: Thu, 23 Feb 2023 11:58:02 -0800 Subject: [PATCH] Require torch >= 1.12 Summary: 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: 6f9e9a18b2d4a5c1bba4edcc2dcf8d861ec781db --- .conda/meta.yaml | 2 +- README.md | 2 +- environment.yml | 2 +- requirements.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index 0c88f5df37..59e030cff0 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -17,7 +17,7 @@ requirements: - setuptools - setuptools_scm run: - - pytorch >=1.11 + - pytorch >=1.12 - gpytorch ==1.9.1 - linear_operator ==0.3.0 - scipy diff --git a/README.md b/README.md index 9c0b8a4cd3..c5309260ee 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Optimization simply use Ax. **Installation Requirements** - Python >= 3.8 -- PyTorch >= 1.11 +- PyTorch >= 1.12 - gpytorch == 1.9.1 - linear_operator == 0.3.0 - pyro-ppl >= 1.8.4 diff --git a/environment.yml b/environment.yml index 32abbc2633..0ab5e09ce5 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: - gpytorch - conda-forge dependencies: - - pytorch>=1.11 + - pytorch>=1.12 - gpytorch==1.9.1 - linear_operator==0.3.0 - scipy diff --git a/requirements.txt b/requirements.txt index bbf80b6418..4a5c37c2bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ multipledispatch scipy -torch>=1.11 +torch>=1.12 pyro-ppl>=1.8.4 gpytorch==1.9.1 linear_operator==0.3.0