Skip to content

Commit 79b7bfb

Browse files
gcattanpre-commit-ci[bot]qbarthelemy
authored
Release version 0.4.1 (#359)
* Update _version.py * Update whatsnew.rst * Update whatsnew.rst * Update __init__.py * [pre-commit.ci] auto fixes from pre-commit.com hooks * Update pyriemann_qiskit/classification/__init__.py Co-authored-by: Quentin Barthélemy <q.barthelemy@gmail.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Quentin Barthélemy <q.barthelemy@gmail.com>
1 parent 7452bea commit 79b7bfb

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

doc/whatsnew.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,21 @@ What's new in the package
1010
Develop branch
1111
----------------
1212

13-
- Fix :class:`pyriemann_qiskit.utils.filtering.ChannelSelection` that caused incorrect channel selection
13+
v0.4.1
14+
------
1415

16+
- Bump qiskit-algorithm, imbalanced-learn, cvxpy, qiskit-ibm-runtime, moabb
17+
- Add random seed generator to NCH
18+
- Fix log product formula for NCH
19+
- Add ablation studies for NCH
20+
- Add "full" strategy to NCH
21+
- Expose QAOA initial points
22+
- Break the classification module into algorithms and wrappers
23+
- Fix incorrect number of channels and selection condition inside ChannelSelection
1524

25+
Details:
1626

27+
https://github.com/pyRiemann/pyRiemann-qiskit/releases/tag/v0.4.1
1728

1829
v0.4.0
1930
------

pyriemann_qiskit/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.4.0'
1+
__version__ = '0.4.1'
Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
from .algorithms import NearestConvexHull
2-
from .wrappers import QuanticMDM, QuanticNCH, QuanticSVM, QuanticVQC
2+
from .wrappers import (
3+
QuanticClassifierBase,
4+
QuanticMDM,
5+
QuanticNCH,
6+
QuanticSVM,
7+
QuanticVQC,
8+
)
39

4-
__all__ = ["NearestConvexHull", "QuanticMDM", "QuanticNCH", "QuanticSVM", "QuanticVQC"]
10+
__all__ = [
11+
"NearestConvexHull",
12+
"QuanticMDM",
13+
"QuanticNCH",
14+
"QuanticSVM",
15+
"QuanticVQC",
16+
"QuanticClassifierBase",
17+
]

0 commit comments

Comments
 (0)