Skip to content

Commit

Permalink
Changelog for 0.11.3, pin LinearOperator to 0.5.2 (#2441)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
saitcakmak authored and facebook-github-bot committed Jul 22, 2024
1 parent d423925 commit d4ff21b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ requirements:
run:
- pytorch >=1.13.1
- gpytorch ==1.12
- linear_operator ==0.5.1
- linear_operator ==0.5.2
- scipy
- multipledispatch
- pyro-ppl >=1.8.4
Expand Down
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

The release log for BoTorch.

## [0.11.2] -- Jul 22, 2024
## [0.11.3] -- Jul 22, 2024

#### Compatibility
* Pin NumPy to <2.0 (#2382).
* Require GPyTorch 1.12 (#2408).
* Require GPyTorch 1.12 and LinearOperator 0.5.2 (#2408, #2441).

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

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


## [0.11.2] -- Jul 22, 2024

See 0.11.3 release. This release failed due to mismatching GPyTorch and LinearOperator versions.


## [0.11.1] -- Jun 11, 2024

#### New Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Optimization simply use Ax.
- Python >= 3.10
- PyTorch >= 1.13.1
- gpytorch == 1.12
- linear_operator == 0.5.1
- linear_operator == 0.5.2
- pyro-ppl >= 1.8.4
- scipy
- multiple-dispatch
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ channels:
dependencies:
- pytorch>=1.13.1
- gpytorch==1.12
- linear_operator==0.5.1
- linear_operator==0.5.2
- scipy
- multipledispatch
- pyro-ppl>=1.8.4
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ mpmath>=0.19,<=1.3
torch>=1.13.1
pyro-ppl>=1.8.4
gpytorch==1.12
linear_operator==0.5.1
linear_operator==0.5.2
numpy<2.0

0 comments on commit d4ff21b

Please sign in to comment.