From 84685a168bb44e47b043fea87a81197a2f08f554 Mon Sep 17 00:00:00 2001 From: teekuningas Date: Mon, 25 Mar 2024 09:31:57 +0200 Subject: [PATCH] Release v1.7.0 --- CHANGES.rst | 15 ++++++++++++++- setup.py | 4 ++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 74f01bfa..513a3666 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,24 @@ Changelog ========= -1.6.4 (unreleased) +1.7.1 (unreleased) ------------------ - nothing changed yet. + +1.7.0 (2024-03-25) +------------------ + +- Fix actions.log propagation problem +- Add a lot of tests for maintainability +- Add new partially generated readthedocs documentation +- Add "Add MNE sample data" option to subject dialog. +- Add tooltips to actions using configuration.json metadata +- Add a little messagebox if no subject is active when clicking an action +- Fix empty lines problem in channel groups dialog +- Update to support mne==1.6.1 + 1.6.3 (2023-12-11) ------------------ diff --git a/setup.py b/setup.py index f972fc59..7ab96e41 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='meggie', - version='1.6.3', + version='1.7.0', description=description, long_description=description, long_description_content_type="text/plain", @@ -16,7 +16,7 @@ include_package_data=True, zip_safe=False, install_requires=[], - python_requires='>=3.7', + python_requires='>=3.8', entry_points={ 'console_scripts': ['meggie=meggie.run:main'], },