Skip to content

Commit a088d87

Browse files
committed
Release v0.5.0
Fixes #40
1 parent 017718b commit a088d87

7 files changed

Lines changed: 44 additions & 11 deletions

File tree

.zenodo.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"title": "MLPro-Int-River - Integration of River into MLPro",
3+
"description": "This repository provides wrapper classes that enable the use of selected River functionalities in your MLPro applications.",
4+
"creators": [
5+
{
6+
"name": "Arend, Detlef",
7+
"affiliation": "South Westphalia University of Applied Sciences, Germany",
8+
"orcid": "0000-0002-8315-2346"
9+
},
10+
{
11+
"name": "Yuwono, Steve",
12+
"affiliation": "South Westphalia University of Applied Sciences, Germany",
13+
"orcid": "0000-0001-7570-2726"
14+
}
15+
],
16+
"license": "Apache-2.0",
17+
"upload_type": "software",
18+
"keywords": [
19+
"online machine learning",
20+
"Python",
21+
"MLPro",
22+
"River",
23+
"framework",
24+
"open source"
25+
],
26+
"communities": [
27+
{
28+
"identifier": "mlpro"
29+
}
30+
],
31+
"language": "eng",
32+
"access_right": "open"
33+
}

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.4.0"
15-
date-released: 2025-04-27
14+
version: "0.5.0"
15+
date-released: 2025-07-23
1616
doi: 10.5281/zenodo.11130004
1717
url: "https://github.com/fhswf/MLPro-Int-River"

doc/rtd/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
# -- Project information -----------------------------------------------------
1919

2020
project = 'MLPro Documentations'
21-
copyright = '2024 South Westphalia University of Applied Sciences, Germany'
22-
author = 'Detlef Arend, Steve Yuwono, Laxmikant Shrikant Baheti et al'
21+
copyright = '2025 South Westphalia University of Applied Sciences, Germany'
22+
author = 'Detlef Arend, Steve Yuwono, et al'
2323

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

2727

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

doc/rtd/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlpro[full]>=2.0.1
1+
mlpro[full]>=2.1.0
22
river>=0.22.0
33

44
sphinxcontrib-napoleon

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
mlpro[full]>=2.0.1
1+
mlpro[full]>=2.1.0
22
river>=0.22.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mlpro-int-river
3-
version = 0.4.0
3+
version = 0.5.0
44
author = MLPro Team
55
author_email = mlpro@listen.fh-swf.de
66
description = MLPro: Integration River
@@ -26,5 +26,5 @@ where = src
2626

2727
[options.extras_require]
2828
full =
29-
mlpro[full]>=2.0.1
29+
mlpro[full]>=2.1.0
3030
river>=0.22.0

src/setup.py

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

33

44
setup(name='mlpro-int-river',
5-
version='0.4.0',
5+
version='0.5.0',
66
description='MLPro: Integration River',
77
author='MLPro Team',
88
author_mail='mlpro@listen.fh-swf.de',
@@ -12,7 +12,7 @@
1212
# Package dependencies for full installation
1313
extras_require={
1414
"full": [
15-
"mlpro[full]>=2.0.1",
15+
"mlpro[full]>=2.1.0",
1616
"river>=0.22.0"
1717
],
1818
},

0 commit comments

Comments
 (0)