Skip to content

Commit

Permalink
Release v1.4.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCBrammer committed Jan 5, 2022
1 parent 53cc2b5 commit 54d244a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Jan C."
orcid: "https://orcid.org/0000-0002-7664-3753"
title: "biopeaks"
version: 1.4.3
version: 1.4.4
doi: 10.5281/zenodo.3698561
date-released: 2022-01-04
url: "https://github.com/JanCBrammer/biopeaks"
Expand Down
7 changes: 5 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Changelog

### Version 1.4.3 (January 04, 2022)
### Version 1.4.4 (January 05, 2022)
+ enhancement: ported from PySide2 to PySide6.

### Version 1.4.3 (January 03, 2022)
Removed due to build error in Windows executable (also yanked from PyPI).

### Version 1.4.2 (June 07, 2021)
+ enhancement: [improved stopping criterion for iterative artifact correction](https://github.com/JanCBrammer/biopeaks/commit/3a25e7c4f9cef3cab28afe067449f280340e71ee).
+ enhancement: [using sos format instead of ba format for butterworth filters.](https://github.com/JanCBrammer/biopeaks/commit/8f52909cebafd3b162c943dddf9e4ca1d8838cab).
Expand Down Expand Up @@ -112,4 +115,4 @@ fewer assumptions about breathing rate.
### Version 1.0.1 (November 28, 2019)
+ bugfix: `controller.save_signal()` now preserves the header if the data are
saved to the same location (i.e., if `model.rpathsignal` and `model.wpathsignal` are
identical).
identical).
6 changes: 2 additions & 4 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ and run the following commands (hit enter once you've typed each of the lines be
the commands to be executed):

```
conda config --add channels conda-forge
conda config --set channel_priority strict
conda create -y -n biopeaks python=3.9 scipy numpy matplotlib pandas
conda create -y -n biopeaks python=3.9
conda activate biopeaks
pip install biopeaks PySide6
pip install scipy numpy matplotlib pandas PySide6 biopeaks
```

After the successful installation, open the application by typing
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 = "biopeaks"
version = "1.4.3"
version = "1.4.4"
description = "A graphical user interface for feature extraction from heart- and breathing biosignals."
authors = ["Jan C. Brammer <jan.c.brammer@gmail.com>"]
license = "GPL-3.0"
Expand All @@ -14,8 +14,8 @@ documentation = "https://jancbrammer.github.io/biopeaks"
# Currently forced to cap Python at 3.11 due to PyInstaller requirements.
python = ">=3.9,<3.11"
scipy = ">=1.7.3"
numpy = ">=1.21.4"
pandas = ">=1.3.4"
numpy = ">=1.22.0"
pandas = ">=1.3.5"
matplotlib = ">=3.5.0"
PySide6 = ">=6.2.2"
# Don't include PyInstaller in dev-dependencies.
Expand Down

0 comments on commit 54d244a

Please sign in to comment.