Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on: [push]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### v0.5.1 -- September 28, 2025 -- Maintenance release

Set minimum scikit-learn version to 1.6.0.
Function `check_estimator` requires usage of `validate_data` which was introduced in 1.6.0

### v0.5.0 -- September 8, 2025 -- Maintenance release

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

# Get started
* [FAQ](https://github.com/vecxoz/vecstack#stacking-faq)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'''

setup(name='vecstack',
version='0.5.0',
version='0.5.1',
description='Python package for stacking (machine learning technique)',
long_description=long_desc,
classifiers=[
Expand Down Expand Up @@ -41,7 +41,7 @@
install_requires=[
'numpy',
'scipy',
'scikit-learn>=0.18'
'scikit-learn>=1.6.0'
],
extras_require={
'test': [
Expand Down
2 changes: 1 addition & 1 deletion vecstack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

__author__ = 'Igor Ivanov > kaggle.com/vecxoz'
__license__ = 'MIT'
__version__ = '0.5.0'
__version__ = '0.5.1'

__all__ = ['stacking', 'StackingTransformer']

Expand Down
Loading