Skip to content

Commit 3c9a124

Browse files
authored
Merge branch 'dev' into Enable_maxiter_in_bo_utils_minimize
2 parents 6181f00 + d3aa4ca commit 3c9a124

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

CHANGELOG.rst

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Changelog
22
=========
33

44
- Enable using `maxiter` in `bo.utils.minimize`
5+
- Fix surrogate model copy operation
6+
- Fix typo in requirements.txt
57

68
0.8.7 (2023-09-21)
79
------------------

elfi/methods/bo/gpy_regression.py

-4
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,3 @@ def copy(self):
362362
kopy.gp_params['mean_function'] = self.gp_params['mean_function'].copy()
363363

364364
return kopy
365-
366-
def __copy__(self):
367-
"""Return a copy of current instance."""
368-
return self.copy()

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dask[distributed]>=2.30.0
2-
numpy>=1.12.1, <= 1.24.4
2+
numpy>=1.12.1, <1.25
33
scipy>=0.19
44
matplotlib>=1.1
55
GPy>=1.0.9

0 commit comments

Comments
 (0)