Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ abstract: >-
pattern recognition methods geared towards the analysis of
biosignals.
license: BSD-3-Clause
version: 2.2.1
version: 2.2.2
date-released: '2024-04-23'
preferred-citation:
type: article
Expand Down
2 changes: 1 addition & 1 deletion biosppy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
# allow lazy loading
from .signals import acc, abp, bvp, ppg, pcg, ecg, eda, eeg, emg, resp, tools, hrv
from .synthesizers import ecg, emg
from .inter_plotting import ecg, acc
# from .inter_plotting import ecg, acc
from .features import frequency, time, time_freq, cepstral, phase_space
2 changes: 1 addition & 1 deletion biosppy/signals/acc.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

# local
from .. import plotting, utils
from biosppy.inter_plotting import acc as inter_plotting


def acc(signal=None, sampling_rate=100.0, units=None, path=None, show=True, interactive=False):
Expand Down Expand Up @@ -88,6 +87,7 @@ def acc(signal=None, sampling_rate=100.0, units=None, path=None, show=True, inte
# plot
if show:
if interactive:
from biosppy.inter_plotting import acc as inter_plotting
inter_plotting.plot_acc(
ts=ts, # plotting.plot_acc
raw=signal,
Expand Down
2 changes: 1 addition & 1 deletion biosppy/signals/ecg.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
# local
from . import tools as st
from .. import plotting, utils
from biosppy.inter_plotting import ecg as inter_plotting
from scipy.signal import argrelextrema


Expand Down Expand Up @@ -123,6 +122,7 @@ def ecg(signal=None, sampling_rate=1000.0, units=None, path=None, show=True, int
# plot
if show:
if interactive:
from biosppy.inter_plotting import ecg as inter_plotting
inter_plotting.plot_ecg(
ts=ts,
raw=signal,
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '2.2.1'
version = '2.2.2'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
EMAIL = 'developer@scientisst.com'
AUTHOR = 'Instituto de Telecomunicacoes'
REQUIRES_PYTHON = '>3.5.2'
VERSION = '2.2.1'
VERSION = '2.2.2'
LICENSE = 'BSD 3-clause'

# What packages are required for this module to be executed?
Expand Down