From 7dfb65c2e7c3aae423ae4ec72a6f231853c752c2 Mon Sep 17 00:00:00 2001 From: Sofia Monteiro <81264130+sofia3ms@users.noreply.github.com> Date: Wed, 27 Nov 2024 17:15:35 +0000 Subject: [PATCH 1/4] Fix sphinx Scipy modules added to conf.py --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 8c103245..da44e76c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,7 +37,7 @@ def __getattr__(cls, name): 'scipy.spatial.distance', 'sklearn', 'sklearn.cluster', 'sklearn.model_selection', 'sklearn.externals', 'matplotlib.gridspec', 'h5py', 'shortuuid', 'bidict', 'svm', - 'sksvm','pywt','joblib'] + 'sksvm','pywt','joblib','scipy.linalg','scipy.integrate','scipy.ndimage'] sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES) From 559d35ce5e6ab1d0975d2765c19ff7f3d081cadd Mon Sep 17 00:00:00 2001 From: Sofia Monteiro <81264130+sofia3ms@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:21:35 +0000 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2a194414..288f6e16 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,10 @@ ### 🎙️ Announcements ``` +🗒️ BioSPPy can now read EDG files directly! +With the biosppy.storage module you can now load your EDF files! +``` +``` 🌀 New module for signal quality assessment 🌀 With the biosppy.quality module you can now evaluate the quality of your signals! So far, the EDA and ECG quality are available, but more could be added soon. From dfb7fbc0b320ee608ab5f40e3e2d47a4f9d74571 Mon Sep 17 00:00:00 2001 From: Sofia Monteiro <81264130+sofia3ms@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:21:52 +0000 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 288f6e16..d543296c 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ ### 🎙️ Announcements ``` -🗒️ BioSPPy can now read EDG files directly! +🗒️ BioSPPy can now read EDF files directly! With the biosppy.storage module you can now load your EDF files! ``` ``` From 1bfa7ec7bad3a6c52fc41fa0d9e9e5a833e1b6cb Mon Sep 17 00:00:00 2001 From: Sofia Monteiro <81264130+sofia3ms@users.noreply.github.com> Date: Thu, 20 Feb 2025 12:23:07 +0000 Subject: [PATCH 4/4] Prepare v2.2.3 release --- CITATION.cff | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index b4b6578c..8227293d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -23,7 +23,7 @@ abstract: >- pattern recognition methods geared towards the analysis of biosignals. license: BSD-3-Clause -version: 2.2.2 +version: 2.2.3 date-released: '2024-04-23' preferred-citation: type: article diff --git a/setup.py b/setup.py index 898faae5..ac3082d5 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ EMAIL = 'developer@scientisst.com' AUTHOR = 'Instituto de Telecomunicacoes' REQUIRES_PYTHON = '>3.5.2' -VERSION = '2.2.2' +VERSION = '2.2.3' LICENSE = 'BSD 3-clause' # What packages are required for this module to be executed?