Skip to content

Commit d271708

Browse files
committed
Merge pull request #5475 from glouppe/gp-deprecation
[MRG] The old GP will be deprecated in 0.19, not 0.18
2 parents 056b029 + 9758e25 commit d271708

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sklearn/gaussian_process/gaussian_process.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
MACHINE_EPSILON = np.finfo(np.double).eps
2121

2222

23-
@deprecated("l1_cross_distances is deprecated and will be removed in 0.18.")
23+
@deprecated("l1_cross_distances is deprecated and will be removed in 0.19.")
2424
def l1_cross_distances(X):
2525
"""
2626
Computes the nonzero componentwise L1 cross-distances between the vectors
@@ -58,12 +58,12 @@ def l1_cross_distances(X):
5858
return D, ij
5959

6060

61-
@deprecated("GaussianProcess is deprecated and will be removed in 0.18. "
61+
@deprecated("GaussianProcess is deprecated and will be removed in 0.19. "
6262
"Use the GaussianProcessRegressor instead.")
6363
class GaussianProcess(BaseEstimator, RegressorMixin):
6464
"""The legacy Gaussian Process model class.
6565
66-
Note that this class is deprecated and will be removed in 0.18.
66+
Note that this class is deprecated and will be removed in 0.19.
6767
Use the GaussianProcessRegressor instead.
6868
6969
Read more in the :ref:`User Guide <gaussian_process>`.

0 commit comments

Comments
 (0)