Skip to content

Commit d4ff21b

Browse files
saitcakmakfacebook-github-bot
authored andcommitted
Changelog for 0.11.3, pin LinearOperator to 0.5.2 (#2441)
Summary: Pull Request resolved: #2441 v0.11.2 release failed due to GPyTorch 1.12 requiring LinearOperator 0.5.2, while BoTorch was still pinned to 0.5.1. This diff fixes the LinearOperator version and relabels the changelog for v0.11.3 (v0.11.2 is reserved for the failed release) Reviewed By: esantorella Differential Revision: D60064011 fbshipit-source-id: 2e4236b4288a460af9899961d71fa7d7900116b5
1 parent d423925 commit d4ff21b

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

.conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ requirements:
1919
run:
2020
- pytorch >=1.13.1
2121
- gpytorch ==1.12
22-
- linear_operator ==0.5.1
22+
- linear_operator ==0.5.2
2323
- scipy
2424
- multipledispatch
2525
- pyro-ppl >=1.8.4

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
The release log for BoTorch.
44

5-
## [0.11.2] -- Jul 22, 2024
5+
## [0.11.3] -- Jul 22, 2024
66

77
#### Compatibility
88
* Pin NumPy to <2.0 (#2382).
9-
* Require GPyTorch 1.12 (#2408).
9+
* Require GPyTorch 1.12 and LinearOperator 0.5.2 (#2408, #2441).
1010

1111
#### New features
1212
* Support evaluating posterior predictive in `MultiTaskGP` (#2375).
13-
* Infinite width BNN kernel (#2366) & the curresponding tutorial (#2381).
13+
* Infinite width BNN kernel (#2366) and the corresponding tutorial (#2381).
1414
* An improved elliptical slice sampling implementation (#2426).
1515
* Add a helper for producing a `DeterministicModel` using a Matheron path (#2435).
1616

17-
#### Deprecations
17+
#### Deprecations and Deletions
1818
* Stop allowing some arguments to be ignored in acqf input constructors (#2356).
1919
* Reap deprecated `**kwargs` argument from `optimize_acqf` variants (#2390).
2020
* Delete `DeterministicPosterior` and `DeterministicSampler` (#2391, #2409, #2410).
@@ -34,6 +34,11 @@ The release log for BoTorch.
3434
* Add a `NumericsWarning` for Legacy EI implementations (#2429).
3535

3636

37+
## [0.11.2] -- Jul 22, 2024
38+
39+
See 0.11.3 release. This release failed due to mismatching GPyTorch and LinearOperator versions.
40+
41+
3742
## [0.11.1] -- Jun 11, 2024
3843

3944
#### New Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Optimization simply use Ax.
5858
- Python >= 3.10
5959
- PyTorch >= 1.13.1
6060
- gpytorch == 1.12
61-
- linear_operator == 0.5.1
61+
- linear_operator == 0.5.2
6262
- pyro-ppl >= 1.8.4
6363
- scipy
6464
- multiple-dispatch

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ channels:
66
dependencies:
77
- pytorch>=1.13.1
88
- gpytorch==1.12
9-
- linear_operator==0.5.1
9+
- linear_operator==0.5.2
1010
- scipy
1111
- multipledispatch
1212
- pyro-ppl>=1.8.4

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ mpmath>=0.19,<=1.3
44
torch>=1.13.1
55
pyro-ppl>=1.8.4
66
gpytorch==1.12
7-
linear_operator==0.5.1
7+
linear_operator==0.5.2
88
numpy<2.0

0 commit comments

Comments
 (0)