#127576 Report by node gh-actions covering 1651 tests from 59 modules resulted into 38 errors

Report

ObsPy version
1.3.0.post0+347.g83066226a2
GitHub Pull Request
https://github.com/obspy/obspy/pull/3156
Report file
JSON document
Total runtime
149.8 sec
Report date/time
Sept. 29, 2022, 4:28 a.m.

System / Python

Architecture
64bit
Machine
x86_64
Node
gh-actions
Processor
x86_64
Python Compiler
GCC 10.4.0
Python Implementation
CPython
Python Version
3.10.6
Release
5.15.0-1020-azure
System
Linux
Version
#25~20.04.1-Ubuntu SMP Thu Sep 1 19:20:56 UTC 2022

Dependencies

cartopy
0.21.0
decorator
5.1.1
flake8
---
geographiclib
2.0
lxml
4.9.1
matplotlib
3.6.0
numpy
1.23.3
obspy
1.3.0.post0+347.g83066226a2
pyproj
3.4.0
pytest
7.1.3
pytest-json-report
1.5.0
requests
2.28.1
scipy
1.9.1
setuptools
65.4.0
shapefile
---
sqlalchemy
1.4.41

Modules (59)

Module Errors / Failures Tracebacks
obspy.clients.earthworm Not tested -
obspy.clients.fdsn - -
obspy.clients.filesystem - -
obspy.clients.iris Not tested -
obspy.clients.neic Not tested -
obspy.clients.nrl Not tested -
obspy.clients.seedlink Not tested -
obspy.clients.syngine Not tested -
obspy.core 23 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24
obspy.core.event - -
obspy.core.inventory 1 18
obspy.core.util 1 25
obspy.geodetics - -
obspy.imaging 2 26 27
obspy.io.ah - -
obspy.io.alsep Not tested -
obspy.io.arclink - -
obspy.io.ascii - -
obspy.io.cmtsolution - -
obspy.io.cnv - -
obspy.io.css - -
obspy.io.dmx - -
obspy.io.focmec - -
obspy.io.gcf - -
obspy.io.gse2 - -
obspy.io.hypodd - -
obspy.io.iaspei - -
obspy.io.json - -
obspy.io.kinemetrics - -
obspy.io.kml 1 28
obspy.io.mseed - -
obspy.io.ndk - -
obspy.io.nied 5 29 30 31 32 33
obspy.io.nlloc - -
obspy.io.nordic - -
obspy.io.pdas - -
obspy.io.pde - -
obspy.io.quakeml - -
obspy.io.reftek 3 34 35 36
obspy.io.rg16 2 37 38
obspy.io.sac - -
obspy.io.scardec - -
obspy.io.seg2 - -
obspy.io.segy - -
obspy.io.seisan - -
obspy.io.seiscomp - -
obspy.io.sh - -
obspy.io.shapefile - -
obspy.io.stationtxt - -
obspy.io.stationxml - -
obspy.io.wav - -
obspy.io.win - -
obspy.io.xseed - -
obspy.io.y - -
obspy.io.zmap - -
obspy.realtime - -
obspy.scripts - -
obspy.signal Not tested -
obspy.taup Not tested -
Summary 38 38

Tracebacks (38)

3475
3476 Rotate three explicitly specified channels to ZNE.
3477
3478 >>> from obspy import read, read_inventory
3479 >>> st = read("/path/to/ffbx_unrotated_gaps.mseed")
3480 >>> inv = read_inventory("/path/to/ffbx.stationxml")
3481 >>> st._rotate_specific_channels_to_zne(
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream._rotate_specific_channels_to_zne[3]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3499, in _rotate_specific_channels_to_zne
from obspy.signal.rotate import rotate2zne
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:3481: UnexpectedException
3417
3418 Rotate all matching traces to ZNE, specifying sets of component codes.
3419
3420 >>> from obspy import read, read_inventory
3421 >>> st = read("/path/to/ffbx_unrotated_gaps.mseed")
3422 >>> inv = read_inventory("/path/to/ffbx.stationxml")
3423 >>> st._rotate_to_zne(inv) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream._rotate_to_zne[3]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3469, in _rotate_to_zne
self._rotate_specific_channels_to_zne(
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3499, in _rotate_specific_channels_to_zne
from obspy.signal.rotate import rotate2zne
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:3423: UnexpectedException
2401 the effect of the downsampling routine becomes clearer.
2402
2403 >>> from obspy import Trace, Stream
2404 >>> tr = Trace(data=np.arange(10))
2405 >>> st = Stream(traces=[tr])
2406 >>> tr.stats.sampling_rate
2407 1.0
2408 >>> tr.data
2409 array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
2410 >>> st.decimate(4, strict_length=False, no_filter=True)
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.decimate[5]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2419, in decimate
tr.decimate(factor, no_filter=no_filter,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1853, in decimate
from obspy.signal.filter import integer_decimation
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2410: UnexpectedException
2198
2199 ``'remez_fir'`` (experimental)
2200 Minimax optimal bandpass using Remez algorithm (uses
2201 :func:`obspy.signal.filter.remez_fir`).
2202
2203 .. rubric:: Example
2204
2205 >>> from obspy import read
2206 >>> st = read()
2207 >>> st.filter("highpass", freq=1.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.filter[2]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2219, in filter
tr.filter(type, **options)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1550, in filter
func = _get_function_from_entry_point('filter', type)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2207: UnexpectedException
2558 a copy of your stream object.
2559
2560 >>> from obspy import read
2561 >>> st = read()
2562 >>> print(st) # doctest: +ELLIPSIS
2563 3 Trace(s) in Stream:
2564 BW.RJOB..EHZ | 2009-08-24T00:20:03... - ... | 100.0 Hz, 3000 samples
2565 BW.RJOB..EHN | 2009-08-24T00:20:03... - ... | 100.0 Hz, 3000 samples
2566 BW.RJOB..EHE | 2009-08-24T00:20:03... - ... | 100.0 Hz, 3000 samples
2567 >>> st.interpolate(sampling_rate=111.1) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.interpolate[3]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2576, in interpolate
tr.interpolate(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 2476, in interpolate
func = _get_function_from_entry_point('interpolate', method)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2567: UnexpectedException
3142 Deconvolve instrument response for all Traces in Stream.
3143
3144 For details see the corresponding
3145 :meth:`~obspy.core.trace.Trace.remove_response` method of
3146 :class:`~obspy.core.trace.Trace`.
3147
3148 >>> from obspy import read, read_inventory
3149 >>> st = read()
3150 >>> inv = read_inventory()
3151 >>> st.remove_response(inventory=inv) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.remove_response[3]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3171, in remove_response
tr.remove_response(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 2810, in remove_response
from obspy.signal.invsim import (cosine_taper, cosine_sac_taper,
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:3151: UnexpectedException
2716 :param inventory: Inventory or SEED Parser with metadata of channels.
2717
2718 Example to rotate unaligned borehole instrument data based on station
2719 inventory (a dataless SEED :class:`~obspy.io.xseed.parser.Parser` can
2720 also be provided, see details for option ``inventory``):
2721
2722 >>> from obspy import read, read_inventory
2723 >>> st = read("/path/to/ffbx_unrotated_gaps.mseed")
2724 >>> inv = read_inventory("/path/to/ffbx.stationxml")
2725 >>> st.rotate(method="->ZNE", inventory=inv) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.rotate[3]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2733, in rotate
return self._rotate_to_zne(inventory, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3469, in _rotate_to_zne
self._rotate_specific_channels_to_zne(
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3499, in _rotate_specific_channels_to_zne
from obspy.signal.rotate import rotate2zne
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2725: UnexpectedException
2111 raw data is not accessible anymore afterwards. To keep your
2112 original data, use :meth:`~obspy.core.stream.Stream.copy` to create
2113 a copy of your stream object.
2114 This also makes an entry with information on the applied processing
2115 in ``stats.processing`` of every trace.
2116
2117 .. rubric:: Example
2118
2119 >>> from obspy import read
2120 >>> from obspy.signal.invsim import corn_freq_2_paz
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.simulate[1]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2120: UnexpectedException
3230 :param npts_tol: Tolerate traces with different number of points
3231 with a difference up to this value. Surplus samples are discarded.
3232 :type time_tol: float
3233 :param time_tol: Tolerate difference, in seconds, in startime when
3234 setting the new starttime of the stack. If starttimes differs more
3235 than this value it will be set to timestamp 0.
3236
3237 >>> from obspy import read
3238 >>> st = read()
3239 >>> stack = st.stack()
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.stack[2]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 3251, in stack
from obspy.signal.util import stack as stack_func
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:3239: UnexpectedException
2265 :func:`obspy.signal.trigger.carl_sta_trig`).
2266
2267 ``'zdetect'``
2268 Z-detector (uses :func:`obspy.signal.trigger.z_detect`).
2269
2270 .. rubric:: Example
2271
2272 >>> from obspy import read
2273 >>> st = read()
2274 >>> st.filter("highpass", freq=1.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.stream.Stream.trigger[2]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 2219, in filter
tr.filter(type, **options)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1550, in filter
func = _get_function_from_entry_point('filter', type)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/stream.py:2274: UnexpectedException
1819
1820 For the example we switch off the automatic pre-filtering so that
1821 the effect of the downsampling routine becomes clearer:
1822
1823 >>> tr = Trace(data=np.arange(10))
1824 >>> tr.stats.sampling_rate
1825 1.0
1826 >>> tr.data
1827 array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
1828 >>> tr.decimate(4, strict_length=False,
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.decimate[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1853, in decimate
from obspy.signal.filter import integer_decimation
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:1828: UnexpectedException
2012 samples between spline nodes.
2013 (uses :func:`obspy.signal.detrend.spline`).
2014
2015 .. rubric:: Example
2016
2017 Apply a third order spline detrend with 500 samples between nodes.
2018
2019 >>> from obspy import read
2020 >>> tr = read()[0]
2021 >>> tr.detrend("spline", order=3, dspline=500)
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.detrend[2]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 2027, in detrend
func = _get_function_from_entry_point('detrend', type)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:2021: UnexpectedException
1527 ``'remez_fir'`` (experimental)
1528 Minimax optimal bandpass using Remez algorithm (uses
1529 :func:`obspy.signal.filter.remez_fir`).
1530
1531 .. rubric:: Example
1532
1533 >>> from obspy import read
1534 >>> st = read()
1535 >>> tr = st[0]
1536 >>> tr.filter("highpass", freq=1.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.filter[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1550, in filter
func = _get_function_from_entry_point('filter', type)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:1536: UnexpectedException
2426 * New interpolation method ``lanczos``.
2427
2428
2429 .. rubric:: _`Usage Examples`
2430
2431 >>> from obspy import read
2432 >>> tr = read()[0]
2433 >>> print(tr) # doctest: +ELLIPSIS
2434 BW.RJOB..EHZ | 2009-08-24T00:20:03... - ... | 100.0 Hz, 3000 samples
2435 >>> tr.interpolate(sampling_rate=111.1) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.interpolate[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 237, in skip_if_no_data
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 2476, in interpolate
func = _get_function_from_entry_point('interpolate', method)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:2435: UnexpectedException
2710 `pitsasim=False` which influence very minor details in detrending
2711 and tapering).
2712
2713 .. rubric:: Example
2714
2715 >>> from obspy import read, read_inventory
2716 >>> st = read()
2717 >>> tr = st[0].copy()
2718 >>> inv = read_inventory()
2719 >>> tr.remove_response(inventory=inv) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.remove_response[4]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 2810, in remove_response
from obspy.signal.invsim import (cosine_taper, cosine_sac_taper,
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:2719: UnexpectedException
1403 raw data is not accessible anymore afterwards. To keep your
1404 original data, use :meth:`~obspy.core.trace.Trace.copy` to create
1405 a copy of your trace object.
1406 This also makes an entry with information on the applied processing
1407 in ``stats.processing`` of this trace.
1408
1409 .. rubric:: Example
1410
1411 >>> from obspy import read
1412 >>> from obspy.signal.invsim import corn_freq_2_paz
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.simulate[1]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:1412: UnexpectedException
1603
1604 ``'zdetect'``
1605 Z-detector (uses :func:`obspy.signal.trigger.z_detect`).
1606
1607 .. rubric:: Example
1608
1609 >>> from obspy import read
1610 >>> st = read()
1611 >>> tr = st[0]
1612 >>> tr.filter("highpass", freq=1.0) # doctest: +ELLIPSIS
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.trace.Trace.trigger[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 282, in _add_processing_info
result = func(*args, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 226, in raise_if_masked
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/trace.py", line 1550, in filter
func = _get_function_from_entry_point('filter', type)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 331, in _get_function_from_entry_point
func = buffered_load_entry_point(entry_point.dist.key,
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/trace.py:1612: UnexpectedException
176
177 For more examples see the :ref:`Obspy Gallery <gallery>`.
178
179 Dealing with the Response information
180 -------------------------------------
181 The :meth:`~obspy.core.inventory.response.Response.get_evalresp_response`
182 method will call some functions within evalresp to generate the response.
183
184 >>> response = cha.response
185 >>> response, freqs = response.get_evalresp_response(0.1, 16384, output="VEL")
UNEXPECTED EXCEPTION: PendingDeprecationWarning('The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.')
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.core.inventory[25]>", line 1, in <module>
File "/home/runner/work/obspy/obspy/obspy/core/inventory/response.py", line 1702, in get_evalresp_response
response = self.get_evalresp_response_for_frequencies(
File "/home/runner/work/obspy/obspy/obspy/core/inventory/response.py", line 1647, in get_evalresp_response_for_frequencies
output, chan = self._call_eval_resp_for_frequencies(
File "/home/runner/work/obspy/obspy/obspy/core/inventory/response.py", line 1130, in _call_eval_resp_for_frequencies
import obspy.signal.evrespwrapper as ew
File "/home/runner/work/obspy/obspy/obspy/signal/__init__.py", line 197, in <module>
from .spectral_estimation import PPSD
File "/home/runner/work/obspy/obspy/obspy/signal/spectral_estimation.py", line 39, in <module>
from obspy.imaging.cm import obspy_sequential
File "/home/runner/work/obspy/obspy/obspy/imaging/cm.py", line 299, in <module>
obspy_divergent = get_cmap("RdBu_r")
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/inventory/__init__.py:185: UnexpectedException
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_event.py", line 120, in test_plot_farfield_without_quiver_with_maps
ev.plot(kind=[['global'], ['ortho', 'beachball'],
File "/home/runner/work/obspy/obspy/obspy/core/event/event.py", line 273, in plot
plot_radiation_pattern(
File "/home/runner/work/obspy/obspy/obspy/imaging/source.py", line 194, in plot_radiation_pattern
_plot_beachball(ax, rtp_mt)
File "/home/runner/work/obspy/obspy/obspy/imaging/source.py", line 376, in _plot_beachball
cmap = get_cmap('bwr')
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_inventory.py", line 707, in test_location_plot_ortho
inv.plot(method='cartopy', projection='ortho', resolution='c',
File "/home/runner/work/obspy/obspy/obspy/core/inventory/inventory.py", line 982, in plot
cmap = get_cmap(name=colormap, lut=len(codes))
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_stream.py", line 1930, in test_read
read('/path/to/UNKNOWN')
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 286, in _map_example_filename
args[ind] = get_example_file(args[ind][9:])
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 208, in get_example_file
mod = __import__("obspy.%s" % module,
File "/home/runner/work/obspy/obspy/obspy/taup/__init__.py", line 449, in <module>
from .tau import TauPyModel # NOQA
File "/home/runner/work/obspy/obspy/obspy/taup/tau.py", line 28, in <module>
cmap = get_cmap('Paired', lut=12)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_waveform_plugins.py", line 46, in test_raise_on_empty_file
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_waveform_plugins.py", line 220, in test_is_format
assert len(paths) > 0, msg + '\n '.join(all_paths)
AssertionError: Test data directories do not exist:
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ah/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/alsep/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/alsep/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/alsep/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/css/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/dmx/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gcf/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gse2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/gse2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/kinemetrics/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/nied/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/mseed/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/css/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/pdas/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/core/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sh/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/reftek/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/rg16/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sac/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sac/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/seg2/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/segy/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/seisan/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/sh/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ascii/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/segy/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/ascii/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/wav/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/win/tests/data
/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/obspy/io/y/tests/data
assert 0 > 0
+ where 0 = len({})
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/tests/test_waveform_plugins.py", line 426, in test_raise_on_unknown_format
read(tmpfile)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
192
193 :param filename: A test file name to which the path should be returned.
194 :return: Full path to file.
195
196 .. rubric:: Example
197
198 >>> get_example_file('slist.ascii') # doctest: +SKIP
199 /custom/path/to/obspy/io/ascii/tests/data/slist.ascii
200
201 >>> get_example_file('does.not.exists') # doctest: +ELLIPSIS
Differences (unified diff with -expected +actual):
@@ -1,3 +1,20 @@
Traceback (most recent call last):
-...
-OSError: Could not find file does.not.exists ...
+ File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
+ exec(compile(example.source, filename, "single",
+ File "<doctest obspy.core.util.base.get_example_file[1]>", line 1, in <module>
+ get_example_file('does.not.exists') # doctest: +ELLIPSIS
+ File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 208, in get_example_file
+ mod = __import__("obspy.%s" % module,
+ File "/home/runner/work/obspy/obspy/obspy/taup/__init__.py", line 449, in <module>
+ from .tau import TauPyModel # NOQA
+ File "/home/runner/work/obspy/obspy/obspy/taup/tau.py", line 28, in <module>
+ cmap = get_cmap('Paired', lut=12)
+ File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
+ emit_warning()
+ File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
+ warn_deprecated(
+ File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
+ warn_external(warning, category=MatplotlibDeprecationWarning)
+ File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
+ warnings.warn(message, category, stacklevel)
+PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
/home/runner/work/obspy/obspy/obspy/core/util/base.py:201: DocTestFailure
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/imaging/tests/test_source.py", line 23, in test_farfield_with_quiver
plot_radiation_pattern(
File "/home/runner/work/obspy/obspy/obspy/imaging/source.py", line 194, in plot_radiation_pattern
_plot_beachball(ax, rtp_mt)
File "/home/runner/work/obspy/obspy/obspy/imaging/source.py", line 376, in _plot_beachball
cmap = get_cmap('bwr')
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/imaging/tests/test_waveform.py", line 339, in test_plot_colored_section
st.plot(outfile=image_path, type='section', color='channel')
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 1155, in plot
return waveform.plot_waveform(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/imaging/waveform.py", line 281, in plot_waveform
self.plot_section(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/imaging/waveform.py", line 1085, in plot_section
self.__sect_init_traces()
File "/home/runner/work/obspy/obspy/obspy/imaging/waveform.py", line 1251, in __sect_init_traces
self.__sect_init_color()
File "/home/runner/work/obspy/obspy/obspy/imaging/waveform.py", line 1292, in __sect_init_color
cmap = get_cmap('Paired', lut=len(colors))
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/kml/tests/test_kml.py", line 25, in test_write_inventory
inv.write(tf.name, format="KML")
File "/home/runner/work/obspy/obspy/obspy/core/inventory/inventory.py", line 372, in write
return write_format(self, path_or_file_object, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/io/kml/core.py", line 289, in _write_kml
kml_string = inventory_to_kml_string(obj, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/io/kml/core.py", line 65, in inventory_to_kml_string
cmap = get_cmap(name=cmap, lut=len(inventory.networks))
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 199, in wrapper
emit_warning()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 193, in emit_warning
warn_deprecated(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/deprecation.py", line 96, in warn_deprecated
warn_external(warning, category=MatplotlibDeprecationWarning)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/matplotlib/_api/__init__.py", line 363, in warn_external
warnings.warn(message, category, stacklevel)
PendingDeprecationWarning: The get_cmap function will be deprecated in a future version. Use ``matplotlib.colormaps[name]`` instead.
081
082 Example
083 -------
084
085 Reading K-NET/KiK-net files is handled by using ObsPy's
086 standard :func:`~obspy.core.stream.read` function. The format is detected
087 automatically.
088
089 >>> from obspy import read
090 >>> st = read('/path/to/test.knet')
UNEXPECTED EXCEPTION: ModuleNotFoundError("No module named 'future'")
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.io.nied[5]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
/home/runner/work/obspy/obspy/obspy/io/nied/__init__.py:90: UnexpectedException
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/nied/tests/test_knet_reading.py", line 22, in test_read_knet_ascii
tr = read(testfile)[0]
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 624, in _generic_reader
generic = callback_func(pathname_or_url, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 142, in uncompress_file
return func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 397, in _read_from_plugin
is_format = is_format(filename)
File "/home/runner/work/obspy/obspy/obspy/io/gse2/core.py", line 120, in _is_gse1
with open(filename, 'rb') as f:
TypeError: expected str, bytes or os.PathLike object, not BytesIO
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/nied/tests/test_knet_reading.py", line 56, in test_read_knet_ascii_from_bytes_io
tr = read(buf)[0]
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 631, in _generic_reader
generic = callback_func(fh.name, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 624, in _generic_reader
generic = callback_func(pathname_or_url, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 142, in uncompress_file
return func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 397, in _read_from_plugin
is_format = is_format(filename)
File "/home/runner/work/obspy/obspy/obspy/io/gse2/core.py", line 120, in _is_gse1
with open(filename, 'rb') as f:
TypeError: expected str, bytes or os.PathLike object, not BufferedReader
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/nied/tests/test_knet_reading.py", line 37, in test_read_knet_ascii_from_open_files
tr = read(fh)[0]
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 631, in _generic_reader
generic = callback_func(fh.name, **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/nied/tests/test_knet_reading.py", line 72, in test_station_name_hack
tr = read(testfile, convert_stnm=True)[0]
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
044 .KW1..EH0 | 2015-10-09T22:51:11.675000Z - ... | 200.0 Hz, 2743 samples
045 .KW1..EH1 | 2015-10-09T22:50:51.000000Z - ... | 200.0 Hz, 3107 samples
046 .KW1..EH1 | 2015-10-09T22:51:05.925000Z - ... | 200.0 Hz, 768 samples
047 .KW1..EH1 | 2015-10-09T22:51:10.765000Z - ... | 200.0 Hz, 2925 samples
048 .KW1..EH2 | 2015-10-09T22:50:51.000000Z - ... | 200.0 Hz, 3405 samples
049 .KW1..EH2 | 2015-10-09T22:51:08.415000Z - ... | 200.0 Hz, 3395 samples
050
051 Network, location and component codes can be specified during reading:
052
053 >>> st = read("/path/to/225051000_00008656", network="BW", location="",
UNEXPECTED EXCEPTION: ModuleNotFoundError("No module named 'future'")
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.io.reftek[4]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
/home/runner/work/obspy/obspy/obspy/io/reftek/__init__.py:53: UnexpectedException
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/reftek/tests/test_core.py", line 216, in test_integration_with_obspy_core
st_reftek = obspy.read(
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/reftek/tests/test_core.py", line 531, in test_reading_packet_with_vpu_float_string
st = obspy.read(self.reftek_file_vpu,
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
044 Several key word arguments are available: ``headonly``, ``starttime``,
045 ``endtime``, ``merge``, ``contacts_north``, ``details``. They are passed to the
046 :func:`obspy.io.rg16.core._read_rg16` function so refer to it for details to
047 each parameter.
048
049 >>> import obspy
050 >>> from obspy.core.util import get_example_file
051 >>> filename = get_example_file('three_chans_six_traces.fcnt')
052 >>> # these are all equivalent:
053 >>> st = obspy.read(filename)
UNEXPECTED EXCEPTION: ModuleNotFoundError("No module named 'future'")
Traceback (most recent call last):
File "/usr/share/miniconda3/envs/test/lib/python3.10/doctest.py", line 1350, in __run
exec(compile(example.source, filename, "single",
File "<doctest obspy.io.rg16[3]>", line 1, in <module>
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'
/home/runner/work/obspy/obspy/obspy/io/rg16/__init__.py:53: UnexpectedException
Traceback (most recent call last):
File "/home/runner/work/obspy/obspy/obspy/io/rg16/tests/test_read_rg16.py", line 35, in test_reading_rg16_files
st_1 = read(fcnt_file)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 291, in _map_example_filename
return func(*args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 208, in read
st = _generic_reader(pathname_or_url, _read, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 658, in _generic_reader
generic = callback_func(pathnames[0], **kwargs)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/decorator.py", line 232, in fun
return caller(func, *(extras + args), **kw)
File "/home/runner/work/obspy/obspy/obspy/core/util/decorator.py", line 202, in uncompress_file
result = func(filename, *args, **kwargs)
File "/home/runner/work/obspy/obspy/obspy/core/stream.py", line 249, in _read
stream, format = _read_from_plugin('waveform', filename, format=format,
File "/home/runner/work/obspy/obspy/obspy/core/util/base.py", line 385, in _read_from_plugin
is_format = buffered_load_entry_point(
File "/home/runner/work/obspy/obspy/obspy/core/util/misc.py", line 600, in buffered_load_entry_point
_ENTRY_POINT_CACHE[hash_str] = load_entry_point(dist, group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 486, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2867, in load_entry_point
return ep.load()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2471, in load
return self.resolve()
File "/usr/share/miniconda3/envs/test/lib/python3.10/site-packages/pkg_resources/__init__.py", line 2477, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
File "/home/runner/work/obspy/obspy/obspy/io/alsep/__init__.py", line 45, in <module>
from future.builtins import * # NOQA
ModuleNotFoundError: No module named 'future'

Skipped tests (17)

Submodule Test Skip message
core core/stream.py::obspy.core.stream._is_pickle Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.CatchOutput Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.SuppressOutput Skipped: all tests skipped by +SKIP option
core.util core/util/misc.py::obspy.core.util.misc.TemporaryWorkingDirectory Skipped: all tests skipped by +SKIP option
geodetics geodetics/tests/test_util_geodetics.py::TestUtilGeodetics::test_gps_2_dist_azimuth_bug150 Skipped: Geographiclib installed, not using calc_vincenty_inverse
imaging imaging/tests/test_mopad_script.py::TestMopad::test_script_plot Skipped: Currently broken until further review.
io.ascii io/ascii/core.py::obspy.io.ascii.core._is_slist Skipped: all tests skipped by +SKIP option
io.ascii io/ascii/core.py::obspy.io.ascii.core._is_tspair Skipped: all tests skipped by +SKIP option
io.nordic io/nordic/utils.py::obspy.io.nordic.utils._evmagtonor Skipped: all tests skipped by +SKIP option
io.nordic io/nordic/utils.py::obspy.io.nordic.utils._nortoevmag Skipped: all tests skipped by +SKIP option
io.pde io/pde/mchedr.py::obspy.io.pde.mchedr._is_mchedr Skipped: all tests skipped by +SKIP option
io.quakeml io/quakeml/core.py::obspy.io.quakeml.core._is_quakeml Skipped: all tests skipped by +SKIP option
io.seisan io/seisan/core.py::obspy.io.seisan.core._is_seisan Skipped: all tests skipped by +SKIP option
io.sh io/sh/core.py::obspy.io.sh.core._is_asc Skipped: all tests skipped by +SKIP option
io.sh io/sh/core.py::obspy.io.sh.core._is_q Skipped: all tests skipped by +SKIP option
io.wav io/wav/core.py::obspy.io.wav.core._is_wav Skipped: all tests skipped by +SKIP option
io.y io/y/core.py::obspy.io.y.core._is_y Skipped: all tests skipped by +SKIP option

Slowest tests (20)

Runtime Test
3.541s scripts/tests/test_print.py::PrintTestCase::test_print_nomerge
3.470s core/stream.py::obspy.core.stream.read
3.124s io/arclink/tests/test_inventory_xml.py::ArclinkInventoryTestCase::test_auto_read_arclink_xml
2.937s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_global
2.867s core/tests/test_trace.py::TestTrace::test_remove_response_plot
2.726s core/tests/test_inventory.py::TestInventoryCartopy::test_location_plot_local
2.348s imaging/tests/test_waveform.py::TestWaveformPlot::test_plot_multiple_traces_10_traces_huge
2.343s core/tests/test_inventory.py::TestInventoryCartopy::test_combined_station_event_plot
2.251s core/tests/test_network.py::TestNetworkCartopy::test_location_plot_global
2.204s imaging/tests/test_waveform.py::TestWaveformPlot::test_plot_multiple_traces_10_traces
2.100s imaging/tests/test_waveform.py::TestWaveformPlot::test_plot_multiple_traces_10_traces_tiny
1.957s core/tests/test_stream.py::TestStream::test_read_url_via_network
1.806s core/tests/test_network.py::TestNetworkCartopy::test_location_plot_ortho
1.477s clients/filesystem/tests/test_tsindex.py::ClientTestCase::test_get_waveforms_bulk
1.337s imaging/tests/test_waveform.py::TestWaveformPlot::test_plot_multiple_traces_5_traces
1.254s imaging/tests/test_waveform.py::TestWaveformPlot::test_plot_ref_time_section
1.143s core/tests/test_station.py::TestStation::test_station_response_plot
1.138s core/tests/test_station.py::TestStation::test_response_plot_degrees
1.131s clients/filesystem/tests/test_sds.py::SDSTestCase::test_read_from_sds_with_wildcarded_seed_ids
1.113s core/tests/test_trace.py::TestTrace::test_dtype_is_not_unnecessarily_changed