Skip to content

Commit 2f12da8

Browse files
committed
Release v0.4.0
Fixes #20
1 parent f41ae65 commit 2f12da8

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"title": "MLPro-Int-scikit-learn - Integration of scikit-learn into MLPro",
2+
"title": "Github repository fhswf/MLPro-Int-scikit-learn",
33
"description": "This repository provides wrapper classes that enable the use of selected scikit-learn functionalities in your MLPro applications.",
44
"creators": [
55
{

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors:
1111
orcid: "https://orcid.org/0000-0001-7570-2726"
1212
affiliation: "South Westphalia University of Applied Sciences, Germany"
1313
license: "Apache-2.0"
14-
version: "0.3.1"
15-
date-released: 2025-03-10
14+
version: "0.4.0"
15+
date-released: 2025-07-23
1616
doi: 10.5281/zenodo.11159759
1717
url: "https://github.com/fhswf/MLPro-Int-scikit-learn"

doc/rtd/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Detlef Arend, Steve Yuwono, Laxmikant Shrikant Baheti et al'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.3.1'
25+
release = '0.4.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

doc/rtd/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mlpro[full]>=1.9.6
2-
scikit-learn>=1.6.1
1+
mlpro[full]>=2.1.0
2+
scikit-learn>=1.7.1
33

44
sphinxcontrib-napoleon
55
sphinx-copybutton

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mlpro[full]>=2.0.2
2-
scikit-learn>=1.6.1
1+
mlpro[full]>=2.1.0
2+
scikit-learn>=1.7.1

setup.cfg

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[metadata]
22
name = mlpro-int-scikit-learn
3-
version = 0.3.1
4-
author = MLPro Team
3+
version = 0.4.0
54
author_email = mlpro@listen.fh-swf.de
65
description = MLPro: Integration scikit-learn
76
long_description = file: README.md
@@ -18,13 +17,13 @@ classifiers =
1817
package_dir =
1918
= src
2019
packages = find:
21-
python_requires = >=3.10
20+
python_requires = >=3.11
2221
include_package_data = True
2322

2423
[options.packages.find]
2524
where = src
2625

2726
[options.extras_require]
2827
full =
29-
mlpro[full]>=1.9.7
30-
scikit-learn>=1.6.1
28+
mlpro[full]>=2.1.0
29+
scikit-learn>=1.7.1

src/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
setup(name='mlpro-int-scikit-learn',
5-
version='0.3.1',
5+
version='0.4.0',
66
description='MLPro: Integration scikit-learn',
77
author='MLPro Team',
88
author_mail='mlpro@listen.fh-swf.de',
@@ -12,8 +12,8 @@
1212
# Package dependencies for full installation
1313
extras_require={
1414
"full": [
15-
"mlpro[full]>=1.9.7",
16-
"scikit-learn>=1.6.1"
15+
"mlpro[full]>=2.1.0",
16+
"scikit-learn>=1.7.1"
1717
],
1818
},
1919

0 commit comments

Comments
 (0)