bayesian-optimization 3.0.0__tar.gz → 3.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bayesian-optimization
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Bayesian Optimization package
5
5
  License: The MIT License (MIT)
6
6
 
@@ -168,7 +168,7 @@ class ScreenLogger:
168
168
  # iter, target, allowed [, *params]
169
169
  cells: list[str | None] = [None] * (3 + len(keys))
170
170
 
171
- cells[:2] = self._format_number(self._iterations + 1), self._format_number(result["target"])
171
+ cells[:2] = self._format_number(self._iterations), self._format_number(result["target"])
172
172
  if self._is_constrained:
173
173
  cells[2] = self._format_bool(result["allowed"])
174
174
  params = result.get("params", {})
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "bayesian-optimization"
3
- version = "3.0.0"
3
+ version = "3.0.1"
4
4
  description = "Bayesian Optimization package"
5
5
  authors = [{ name = "Fernando Nogueira", email = "fmfnogueira@gmail.com" }]
6
6
  license = { file = "LICENSE" }