diff --git a/docs/source/conf.py b/docs/source/conf.py index c2c5537..0ad3344 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ 'Peter Makus, Christoph Sens-Schönfelder, and the SeisMIC development Team' # The full version, including alpha/beta/rc tags -release = '0.6.7' +release = '0.6.8' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 6f6dd8e..32bc690 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = seismic -version = 0.6.7 +version = 0.6.8 author = Peter Makus, Christoph Sens-Schönfelder, and the SeisMIC development team author_email = makus@gfz-potsdam.de description = Seismological Monitoring using Interferometric Concepts diff --git a/src/seismic/correlate/correlate.py b/src/seismic/correlate/correlate.py index eb49253..4d6740b 100644 --- a/src/seismic/correlate/correlate.py +++ b/src/seismic/correlate/correlate.py @@ -8,7 +8,7 @@ Peter Makus (makus@gfz-potsdam.de) Created: Monday, 29th March 2021 07:58:18 am -Last Modified: Monday, 04th December 2024 03:07:26 pm (J. Lehr) +Last Modified: Friday, 10th January 2025 10:14:58 am ''' from typing import Iterator, List, Tuple, Optional from warnings import warn @@ -554,7 +554,7 @@ def _generate_data(self) -> Iterator[Tuple[Stream, bool]]: st = preprocess_stream( st, self.store_client, startt, endt, tl, **self.options) - except ValueError as e: + except Exception as e: self.logger.error( 'Stream preprocessing failed for ' f'{st[0].stats.network}.{st[0].stats.station} and time' @@ -623,7 +623,7 @@ def _generate_data(self) -> Iterator[Tuple[Stream, bool]]: win = preprocess_stream( win, self.store_client, winstart, winend, tl, **self.options) - except ValueError as e: + except Exception as e: if st.count(): self.logger.error( 'Stream preprocessing failed for '