Skip to content

Commit 056e657

Browse files
Balandatfacebook-github-bot
authored andcommitted
Bump pyro-ppl requirement to >=1.8.4 (#1606)
Summary: This includes two major changes of interest to botorch: 1. Support for pytorch 2.0 (allowing us to not require pyro dev branch when testing against pytorch nightlies): pyro-ppl/pyro#3164 2. The ability to registering of custom exception handlers for numerical issues: pyro-ppl/pyro#3168 Pull Request resolved: #1606 Reviewed By: saitcakmak Differential Revision: D42330914 Pulled By: Balandat fbshipit-source-id: 1117e7713b99819b4f1297de2d49aeb1bd2b9c9b
1 parent 1addd3a commit 056e657

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requirements:
2222
- linear_operator ==0.2.0
2323
- scipy
2424
- multipledispatch
25-
- pyro-ppl >=1.8.2
25+
- pyro-ppl >=1.8.4
2626

2727
test:
2828
imports:

.github/workflows/deploy_on_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
conda install -y scipy sphinx pytest flake8 multipledispatch
8787
conda install -y -c pytorch pytorch cpuonly
8888
conda install -y -c gpytorch gpytorch
89-
conda install -y -c conda-forge pyro-ppl>=1.8.2
89+
conda install -y -c conda-forge pyro-ppl>=1.8.4
9090
conda config --set anaconda_upload no
9191
- name: Build and verify conda package
9292
shell: bash -l {0}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
conda install -y scipy multipledispatch setuptools_scm conda-build conda-verify
106106
conda config --set anaconda_upload no
107107
conda install -y -c pytorch-nightly pytorch cpuonly
108-
conda install -y -c conda-forge pyro-ppl>=1.8.2
108+
conda install -y -c conda-forge pyro-ppl>=1.8.4
109109
pip install git+https://github.com/cornellius-gp/linear_operator.git
110110
pip install git+https://github.com/cornellius-gp/gpytorch.git
111111
- name: Build and verify conda package

.github/workflows/test_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
conda install -y -c pytorch pytorch cpuonly
4949
conda install -y pip scipy pytest
5050
conda install -y -c gpytorch gpytorch
51-
conda install -y -c conda-forge pyro-ppl>=1.8.2
51+
conda install -y -c conda-forge pyro-ppl>=1.8.4
5252
pip install .[test]
5353
- name: Unit tests
5454
shell: bash -l {0}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Optimization simply use Ax.
5959
- PyTorch >= 1.11
6060
- gpytorch == 1.9.0
6161
- linear_operator == 0.2.0
62-
- pyro-ppl >= 1.8.2
62+
- pyro-ppl >= 1.8.4
6363
- scipy
6464
- multiple-dispatch
6565

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Before jumping the gun, we recommend you start with the high-level
1919
- linear_operator == 0.2.0
2020
- scipy
2121
- multiple-dispatch
22-
- pyro-ppl >= 1.8.2
22+
- pyro-ppl >= 1.8.4
2323

2424
BoTorch is easily installed via
2525
[Anaconda](https://www.anaconda.com/distribution/#download-section) (recommended)

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ dependencies:
99
- linear_operator==0.2.0
1010
- scipy
1111
- multipledispatch
12-
- pyro-ppl>=1.8.2
12+
- pyro-ppl>=1.8.4

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
multipledispatch
22
scipy
33
torch>=1.11,<2.0
4-
pyro-ppl>=1.8.2
4+
pyro-ppl>=1.8.4
55
gpytorch==1.9.0
66
linear_operator==0.2.0

0 commit comments

Comments
 (0)