We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e999d commit da9dfa2Copy full SHA for da9dfa2
2 files changed
pyproject.toml
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
8
[project]
9
name = "spotpython"
10
-version = "0.29.14"
+version = "0.29.15"
11
authors = [
12
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
13
]
src/spotpython/spot/spot.py
@@ -8,6 +8,7 @@
import json
from numpy.random import default_rng
from spotpython.design.spacefilling import SpaceFilling
+from multiprocessing import set_start_method
# old Kriging with attribute "name" kriging
14
from spotpython.build.kriging import Kriging as OldKriging
@@ -55,6 +56,8 @@
55
56
# matplotlib.use("TkAgg")
57
# matplotlib.use("Agg")
58
59
+# for multiprocessing:
60
+set_start_method("spawn")
61
62
logger = logging.getLogger(__name__)
63
# configure the handler and formatter as needed
0 commit comments