Skip to content

Commit 6e3fcb7

Browse files
sdaultonmeta-codesync[bot]
authored andcommitted
Release 0.17.1 - Bump pinned gpytorch and linear_operator versions (#3214)
Summary: Pull Request resolved: #3214 [botorch] Release 0.17.1 - Bump pinned gpytorch and linear_operator versions This diff prepares the 0.17.1 release of BoTorch with the following changes: **Bug Fixes** - Fix BAxUS bugs (#3204) - Fix q-dim bug in `ScalarizedPosteriorMean` (#3191) - Project `candidate_set` in `qMultiFidelityMaxValueEntropy.__init__` (#3205) **Other Changes** - Make `d` and `target_fidelities` required in `project_to_target_fidelity` (#3203) - Add test harness infrastructure for acquisition function testing (#3190, #3192) - Fix typos and docstring issues across botorch (#3211) - Fix docstring issues in analytic acquisition functions (#3208) **Compatibility** - Require GPyTorch>=1.15.2 and linear_operator>=0.6.1 Reviewed By: saitcakmak Differential Revision: D95224716 fbshipit-source-id: 311d7abe2b389ee62df4eeaf3951d2c90733eee5
1 parent ad68879 commit 6e3fcb7

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
The release log for BoTorch.
44

5+
## [0.17.1] -- Mar 4, 2026
6+
7+
#### Compatibility
8+
* Require GPyTorch>=1.15.2 and linear_operator>=0.6.1 (#3182).
9+
10+
#### Bug Fixes
11+
* Fix BAxUS bugs (#3204).
12+
* Fix q-dim bug in `ScalarizedPosteriorMean` (#3191).
13+
* Project `candidate_set` in `qMultiFidelityMaxValueEntropy.__init__` before
14+
passing to `super().__init__`, allowing `candidate_set` to be either `n x d`
15+
(without fidelity dims) or `n x (d + s)` (with fidelity dims) (#3205).
16+
17+
#### Other Changes
18+
* Make `d` and `target_fidelities` required arguments in
19+
`project_to_target_fidelity` to eliminate silent bugs (#3203).
20+
* Add test harness infrastructure for acquisition function testing (#3190, #3192).
21+
* Fix typos and docstring issues across botorch (#3211).
22+
* Fix docstring issues in analytic acquisition functions (#3208).
23+
524
## [0.17.0] -- Feb 17, 2026
625

726
#### Compatibility

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ dynamic = ["version"]
2323
dependencies = [
2424
"typing_extensions",
2525
"pyre_extensions",
26-
"gpytorch>=1.15.1",
27-
"linear_operator>=0.6",
26+
"gpytorch>=1.15.2",
27+
"linear_operator>=0.6.1",
2828
"torch>=2.2",
2929
"pyro-ppl>=1.8.4",
3030
"scipy",

0 commit comments

Comments
 (0)