Skip to content

Commit 5776cb3

Browse files
0.27.13 cleanup
1 parent 6eef37c commit 5776cb3

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "spotpython"
10-
version = "0.27.12"
10+
version = "0.27.13"
1111
authors = [
1212
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
1313
]

src/spotpython/plot/contour.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ def hidden_value(dim_index):
306306
edgecolor="black",
307307
s=points_size,
308308
alpha=0.9,
309+
zorder=10, # Ensure points are rendered on top
309310
)
310311
ax_surface.scatter(
311312
X_points[above_mask, i],
@@ -315,6 +316,7 @@ def hidden_value(dim_index):
315316
edgecolor="black",
316317
s=points_size,
317318
alpha=0.9,
319+
zorder=10, # Ensure points are rendered on top
318320
)
319321
ax_surface.scatter(
320322
X_points[on_mask, i],
@@ -324,6 +326,7 @@ def hidden_value(dim_index):
324326
edgecolor="black",
325327
s=points_size,
326328
alpha=0.9,
329+
zorder=10, # Ensure points are rendered on top
327330
)
328331

329332
# --- Optionally set aspect in 3D ---

src/spotpython/spot/spot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from numpy import spacing
2727
from numpy import append
2828
from numpy import min, max
29-
from spotpython.utils.convert import get_shape, set_shape
29+
from spotpython.utils.convert import get_shape
3030
from spotpython.utils.init import fun_control_init, optimizer_control_init, surrogate_control_init, design_control_init
3131
from spotpython.utils.compare import selectNew
3232
from spotpython.utils.aggregate import aggregate_mean_var, select_distant_points

0 commit comments

Comments
 (0)