From e5e8e3cab447aec8040d4028663dc3a4087e9c5f Mon Sep 17 00:00:00 2001 From: Maeva Pourpoint <maeva@passcal.nmt.edu> Date: Tue, 10 Jan 2023 13:59:53 -0700 Subject: [PATCH] Change version number + Update README --- README.rst | 5 +++-- conda.recipe/meta.yaml | 2 +- lemi2seed/__init__.py | 2 +- lemi2seed/config/config.ini | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 23aeee5..055130e 100644 --- a/README.rst +++ b/README.rst @@ -9,12 +9,13 @@ lemi2seed - ``lemi2seed -h`` - ``lemi2seed -d path2data -qc`` *(run lemi2seed in "quality control" mode)* - ``lemi2seed -d path2data -g`` *(run lemi2seed in "gui only" mode)* + - ``lemi2seed -d path2data -g -s path2savedmd`` *(run lemi2seed in "gui only" mode after loading previously saved metadata fields)* - ``lemi2seed -d path2data -m path2metadata`` *(run lemi2seed in "field sheet and gui" mode)* The "quality control" mode allows to quickly convert LEMI data to day-long mseed files. The GUI and handling of metadata are bypassed. - In the "gui only" mode, metadata are entered only using the GUI. + In the "gui only" mode, metadata are entered/modified using the GUI only. - In the "field sheet and gui" mode, metadata are prepopulated from parsing the provided field sheets. + In the "field sheet and gui" mode, metadata are prepopulated from parsing the user-provided field sheets and modified using the GUI. - **License**: GNU General Public License v3 (GPLv3) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index 16d1cce..8e3a6e7 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: lemi2seed - version: 2022.332 + version: 2023.1.0.0 source: path: ../ diff --git a/lemi2seed/__init__.py b/lemi2seed/__init__.py index 8ed983c..c3a3d5e 100644 --- a/lemi2seed/__init__.py +++ b/lemi2seed/__init__.py @@ -4,4 +4,4 @@ __author__ = """IRIS PASSCAL""" __email__ = 'software-support@passcal.nmt.edu' -__version__ = '2022.332' +__version__ = '2023.1.0.0' diff --git a/lemi2seed/config/config.ini b/lemi2seed/config/config.ini index 34228c2..1596877 100644 --- a/lemi2seed/config/config.ini +++ b/lemi2seed/config/config.ini @@ -1,7 +1,7 @@ [software] author = Maeva Pourpoint name = lemi2seed -version = 2022.332 +version = 2023.1.0.0 [sheets] header = A1 diff --git a/setup.py b/setup.py index b8993bc..3ab8229 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ setup( name='lemi2seed', packages=find_packages(include=['lemi2seed']), url='https://git.passcal.nmt.edu/software_public/mt/lemi2seed', - version='2022.332', + version='2023.1.0.0', zip_safe=False, ) -- GitLab