pyckster 25.12.2__tar.gz → 25.12.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-25.12.2 → pyckster-25.12.3}/CHANGES.md +2 -0
- {pyckster-25.12.2/pyckster.egg-info → pyckster-25.12.3}/PKG-INFO +5 -1
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/__init__.py +1 -1
- pyckster-25.12.3/pyckster/__main__.py +11 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/core.py +935 -142
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/inversion_app.py +9 -3
- {pyckster-25.12.2 → pyckster-25.12.3/pyckster.egg-info}/PKG-INFO +5 -1
- pyckster-25.12.3/pyckster.egg-info/entry_points.txt +3 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster.egg-info/requires.txt +4 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/setup.py +5 -1
- pyckster-25.12.2/pyckster/__main__.py +0 -4
- pyckster-25.12.2/pyckster.egg-info/entry_points.txt +0 -3
- {pyckster-25.12.2 → pyckster-25.12.3}/LICENCE +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/MANIFEST.in +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/README.md +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/images/pyckster.png +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/images/pyckster.svg +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/images/screenshot_01.png +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/auto_picking.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/bayesian_inversion.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/inversion_manager.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/inversion_visualizer.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/ipython_console.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/obspy_utils.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/pac_inversion.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/pyqtgraph_utils.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/surface_wave_analysis.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/surface_wave_profiling.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/sw_utils.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/tab_factory.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster/visualization_utils.py +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster.egg-info/SOURCES.txt +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster.egg-info/dependency_links.txt +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster.egg-info/not-zip-safe +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/pyckster.egg-info/top_level.txt +0 -0
- {pyckster-25.12.2 → pyckster-25.12.3}/setup.cfg +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
v25.12.3, Dec. 2025 -- Add shot stacking, improved packaging, file handling, batch editing, minor display fixes
|
|
2
|
+
|
|
1
3
|
v25.12.2, Dec. 2025 -- Minor fixes, code cleanup
|
|
2
4
|
|
|
3
5
|
v25.12.1, Dec. 2025 -- Major UI modification, improve loading picks logic, debug ipython consol, fix trace editing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyckster
|
|
3
|
-
Version: 25.12.
|
|
3
|
+
Version: 25.12.3
|
|
4
4
|
Summary: A PyQt5-based GUI for picking seismic traveltimes
|
|
5
5
|
Home-page: https://gitlab.in2p3.fr/metis-geophysics/pyckster
|
|
6
6
|
Author: Sylvain Pasquet
|
|
@@ -15,6 +15,9 @@ Requires-Dist: numpy
|
|
|
15
15
|
Requires-Dist: scipy
|
|
16
16
|
Requires-Dist: matplotlib
|
|
17
17
|
Requires-Dist: obspy
|
|
18
|
+
Requires-Dist: qtawesome
|
|
19
|
+
Provides-Extra: tt-inversion
|
|
20
|
+
Requires-Dist: pygimli; extra == "tt-inversion"
|
|
18
21
|
Dynamic: author
|
|
19
22
|
Dynamic: author-email
|
|
20
23
|
Dynamic: description
|
|
@@ -22,6 +25,7 @@ Dynamic: description-content-type
|
|
|
22
25
|
Dynamic: home-page
|
|
23
26
|
Dynamic: license
|
|
24
27
|
Dynamic: license-file
|
|
28
|
+
Dynamic: provides-extra
|
|
25
29
|
Dynamic: requires-dist
|
|
26
30
|
Dynamic: requires-python
|
|
27
31
|
Dynamic: summary
|
|
@@ -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.12.
|
|
18
|
+
__version__ = "25.12.3"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Set locale FIRST before importing anything else
|
|
2
|
+
import locale
|
|
3
|
+
try:
|
|
4
|
+
locale.setlocale(locale.LC_NUMERIC, 'C') # Ensure decimal point is '.'
|
|
5
|
+
except locale.Error:
|
|
6
|
+
pass # Fallback if 'C' locale is not available
|
|
7
|
+
|
|
8
|
+
from .core import main
|
|
9
|
+
|
|
10
|
+
if __name__ == "__main__":
|
|
11
|
+
main()
|