From c41b16f266bfc1d75f899ee6e0d9b0be1d6732b6 Mon Sep 17 00:00:00 2001 From: Bernd Porr Date: Mon, 22 Jan 2024 08:11:24 +0000 Subject: [PATCH] New release with the bugfix. --- setup.py | 4 ++-- usage_example.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a423bc7..6c180f3 100755 --- a/setup.py +++ b/setup.py @@ -7,14 +7,14 @@ setup( name='py-ecg-detectors', - version='1.3.4', + version='1.3.5', description="Eight ECG heartbeat detection algorithms and heartrate variability analysis", long_description=long_description, author='Luis Howell, Bernd Porr', author_email='luisbhowell@gmail.com, bernd.porr@glasgow.ac.uk', py_modules=['ecgdetectors','hrv','ecgtemplates'], install_requires=['numpy', - 'pathlib2;python_version<"3.4"', + 'pathlib2', 'scipy', 'gatspy', 'pywavelets'], diff --git a/usage_example.py b/usage_example.py index 086dbe1..64f312d 100755 --- a/usage_example.py +++ b/usage_example.py @@ -62,4 +62,5 @@ plt.title("Heart rate") plt.xlabel("time/sec") plt.ylabel("HR/BPM") +plt.ylim([0,200]) plt.show()