pyckster 25.11.1__tar.gz → 25.12.1__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-25.11.1 → pyckster-25.12.1}/CHANGES.md +2 -0
- {pyckster-25.11.1/pyckster.egg-info → pyckster-25.12.1}/PKG-INFO +1 -1
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/__init__.py +1 -1
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/core.py +6015 -1600
- pyckster-25.12.1/pyckster/ipython_console.py +261 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/obspy_utils.py +75 -6
- {pyckster-25.11.1 → pyckster-25.12.1/pyckster.egg-info}/PKG-INFO +1 -1
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/SOURCES.txt +1 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/LICENCE +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/MANIFEST.in +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/README.md +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/images/pyckster.png +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/images/pyckster.svg +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/images/screenshot_01.png +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/__main__.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/auto_picking.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/bayesian_inversion.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/inversion_app.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/inversion_manager.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/inversion_visualizer.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/pac_inversion.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/pyqtgraph_utils.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/surface_wave_analysis.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/surface_wave_profiling.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/sw_utils.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/tab_factory.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster/visualization_utils.py +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/dependency_links.txt +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/entry_points.txt +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/not-zip-safe +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/requires.txt +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/pyckster.egg-info/top_level.txt +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/setup.cfg +0 -0
- {pyckster-25.11.1 → pyckster-25.12.1}/setup.py +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
v25.12.1, Dec. 2025 -- Major UI modification, improve loading picks logic, debug ipython consol, fix trace editing
|
|
2
|
+
|
|
1
3
|
v25.11.1, Nov. 2025 -- Add autopicking, add spectro and dispersion views, minor fixes and improvements
|
|
2
4
|
|
|
3
5
|
v25.10.1, Oct. 2025 -- Add bottom menu and coord display, fix picks loading (partly - still behaves weirdly with roll alongs), other small fixes
|
|
@@ -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__ = "25.
|
|
18
|
+
__version__ = "25.12.1"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|