Skip to content

Commit b768897

Browse files
authored
Merge pull request #53 from vecxoz/dev3
Global maintenance 2025 turn 5
2 parents 3397c41 + a499855 commit b768897

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.github/workflows/actions.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ on: [push]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
88
strategy:
9+
fail-fast: false
910
matrix:
11+
os: [ubuntu-latest, windows-latest, macos-latest]
1012
python-version: ["3.9", "3.10", "3.11", "3.12"]
1113

1214
steps:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### v0.5.1 -- September 28, 2025 -- Maintenance release
4+
5+
Set minimum scikit-learn version to 1.6.0.
6+
Function `check_estimator` requires usage of `validate_data` which was introduced in 1.6.0
7+
38
### v0.5.0 -- September 8, 2025 -- Maintenance release
49

510
* Python 3.9+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Convenient way to automate OOF computation, prediction and bagging using any num
2525
* Python 3.9+, [unofficial support for Python 2.7 and 3.4](https://github.com/vecxoz/vecstack/blob/master/PY2.md)
2626
* Win, Linux, Mac
2727
* [MIT license](https://github.com/vecxoz/vecstack/blob/master/LICENSE.txt)
28-
* Depends on **numpy**, **scipy**, **scikit-learn>=0.18**
28+
* Depends on **numpy**, **scipy**, **scikit-learn>=1.6.0**
2929

3030
# Get started
3131
* [FAQ](https://github.com/vecxoz/vecstack#stacking-faq)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'''
1010

1111
setup(name='vecstack',
12-
version='0.5.0',
12+
version='0.5.1',
1313
description='Python package for stacking (machine learning technique)',
1414
long_description=long_desc,
1515
classifiers=[
@@ -41,7 +41,7 @@
4141
install_requires=[
4242
'numpy',
4343
'scipy',
44-
'scikit-learn>=0.18'
44+
'scikit-learn>=1.6.0'
4545
],
4646
extras_require={
4747
'test': [

vecstack/__init__.py

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

3939
__author__ = 'Igor Ivanov > kaggle.com/vecxoz'
4040
__license__ = 'MIT'
41-
__version__ = '0.5.0'
41+
__version__ = '0.5.1'
4242

4343
__all__ = ['stacking', 'StackingTransformer']
4444

0 commit comments

Comments
 (0)