Skip to content

Commit 8ae4570

Browse files
authored
Merge pull request rasbt#1039 from rasbt/new-numpy
fix numpy deprecations
2 parents 162a2b5 + 8cf16ea commit 8ae4570

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

docs/sources/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ The CHANGELOG for the current development version is available at
1919

2020
##### Changes
2121

22+
- Address NumPy deprecations to make mlxtend compatible to NumPy 1.24
2223
- Changed the signature of the `LinearRegression` model of sklearn in the test removing the `normalize` parameter as it is deprecated. ([#1036](https://github.com/rasbt/mlxtend/issues/1036))
2324

2425
##### New Features and Enhancements

mlxtend/evaluate/tests/test_holdout.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ def test_predefinedholdoutsplit_default_iter():
389389
]
390390
)
391391
expect_valid_ind = np.array([0, 1, 99])
392-
393392
np.testing.assert_equal(train_ind, expect_train_ind)
394393
assert (valid_ind == expect_valid_ind).all()
395394

0 commit comments

Comments
 (0)