Skip to content

Commit b33c57d

Browse files
committed
hotfix: docs example update
1 parent 0b5c73f commit b33c57d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Version 1.6.1
5050

5151
**New features**
5252

53-
* IO routines for zmap files ([#199](https://github.com/GeoStat-Framework/PyKrige/pull/165))
53+
* IO routines for zmap files ([#199](https://github.com/GeoStat-Framework/PyKrige/pull/199))
5454
* `write_asc_grid` got new keyword `no_data` ([#199](https://github.com/GeoStat-Framework/PyKrige/issues/199))
5555

5656
**Changes**

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
#
122122
# This is also used if you do content translation via gettext catalogs.
123123
# Usually you set "language" from the command line for these cases.
124-
language = None
124+
language = "en"
125125

126126
# There are two options for replacing |today|: either, you set today to some
127127
# non-false value, then it is used:

examples/07_regression_kriging2d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
svr_model = SVR(C=0.1, gamma="auto")
1919
rf_model = RandomForestRegressor(n_estimators=100)
20-
lr_model = LinearRegression(normalize=True, copy_X=True, fit_intercept=False)
20+
lr_model = LinearRegression(copy_X=True, fit_intercept=False)
2121

2222
models = [svr_model, rf_model, lr_model]
2323

0 commit comments

Comments
 (0)