pyckster 26.1.1__tar.gz → 26.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyckster-26.1.1 → pyckster-26.1.3}/CHANGES.md +4 -0
- {pyckster-26.1.1/pyckster.egg-info → pyckster-26.1.3}/PKG-INFO +1 -1
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/__init__.py +1 -1
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/core.py +2033 -366
- pyckster-26.1.3/pyckster/sw_utils.py +360 -0
- {pyckster-26.1.1 → pyckster-26.1.3/pyckster.egg-info}/PKG-INFO +1 -1
- pyckster-26.1.1/pyckster/sw_utils.py +0 -169
- {pyckster-26.1.1 → pyckster-26.1.3}/LICENCE +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/MANIFEST.in +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/README.md +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/images/pyckster.png +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/images/pyckster.svg +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/images/screenshot_01.png +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/__main__.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/auto_picking.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/bayesian_inversion.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/inversion_app.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/inversion_manager.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/inversion_visualizer.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/ipython_console.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/mpl_export.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/obspy_utils.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/pac_inversion.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/pick_io.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/pyqtgraph_utils.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/surface_wave_analysis.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/surface_wave_profiling.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/tab_factory.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster/visualization_utils.py +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/SOURCES.txt +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/dependency_links.txt +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/entry_points.txt +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/not-zip-safe +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/requires.txt +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/pyckster.egg-info/top_level.txt +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/setup.cfg +0 -0
- {pyckster-26.1.1 → pyckster-26.1.3}/setup.py +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
v26.1.3, Jan. 2026 -- Phase velocity pseudo-sections, load SWIP .pvc picks, minor fixes
|
|
2
|
+
|
|
3
|
+
v26.1.2, Jan. 2026 -- Batch dispersion windowing, minor fixes
|
|
4
|
+
|
|
1
5
|
v26.1.1, Jan. 2026 -- Code cleanup, minor bug fixes and improvements, add dispersion picking feature
|
|
2
6
|
|
|
3
7
|
v25.12.4, Dec. 2025 -- Minor dependency fix
|
|
@@ -15,7 +15,7 @@ except ImportError:
|
|
|
15
15
|
pass # matplotlib not available, that's fine
|
|
16
16
|
|
|
17
17
|
# Define version and metadata in one place
|
|
18
|
-
__version__ = "26.1.
|
|
18
|
+
__version__ = "26.1.3"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|