Skip to content

Commit

Permalink
0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
richrobe committed Mar 18, 2022
1 parent 0333180 commit 55f8e27
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Version 0.4.2 - March 18, 2022
### Bugfixes
- `biopsykit.stats.StatsPipeline`: Fixed bug of failing to generate significance brackets from within-subjects
stats data
- `biopsykit.protocols.plotting.saliva_plot`: Fixed wrong plot styling

### New Features
- `biopsykit.plotting.feature_boxplot`: Added `legend_title` parameter
- `biopsykit.classification.model_selection.nested_cv`: Train and test indices are now saved for each fold of the nested cv
- `biopsykit.classification.model_selection.SklearnPipelinePermuter`:
- Updated "scoring" and "refit" behavior
- Added confusion matrix, true labels, predicted labels, train and test indices per fold and flattened


## Version 0.4.1 - January 24, 2022
### Bugfixes
- `biopsykit.signals.imu.static_moment_detection`: Now returning an empty dataframe with correct column names when
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "biopsykit"
version = "0.4.1"
version = "0.4.2"
description = "A Python package for the analysis of biopsychological data."
authors = [
"Robert Richer <robert.richer@fau.de>",
Expand All @@ -23,7 +23,7 @@ pandas = "^1.2.0"
matplotlib = "^3"
seaborn = "^0.11.1"
neurokit2 = "^0.1.3"
pingouin = "^0.5.0"
pingouin = "^0.5.1"
scipy = "^1.7.0"
statannot = "^0.2.3"
tqdm = "^4.62.0"
Expand All @@ -33,7 +33,7 @@ nilspodlib = "^3.2.2"
openpyxl = "^3.0.7"
XlsxWriter = "^1.4.5"
xlrd = "^2.0.1"
statsmodels = "^0.12.2"
statsmodels = "^0.13"
fau-colors = "^1.0.2"
mne = {version = "^0.23.0", optional = true}
IPython = {version = "^7.13.0", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion src/biopsykit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"utils",
]

__version__ = "0.4.1"
__version__ = "0.4.2"


def version() -> None:
Expand Down

0 comments on commit 55f8e27

Please sign in to comment.