pyckster 25.12.1__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.
Files changed (36) hide show
  1. {pyckster-25.12.1 → pyckster-25.12.3}/CHANGES.md +4 -0
  2. {pyckster-25.12.1/pyckster.egg-info → pyckster-25.12.3}/PKG-INFO +11 -1
  3. {pyckster-25.12.1 → pyckster-25.12.3}/README.md +6 -0
  4. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/__init__.py +1 -1
  5. pyckster-25.12.3/pyckster/__main__.py +11 -0
  6. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/core.py +1200 -707
  7. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/inversion_app.py +9 -3
  8. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/surface_wave_analysis.py +19 -3
  9. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/surface_wave_profiling.py +19 -3
  10. {pyckster-25.12.1 → pyckster-25.12.3/pyckster.egg-info}/PKG-INFO +11 -1
  11. pyckster-25.12.3/pyckster.egg-info/entry_points.txt +3 -0
  12. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster.egg-info/requires.txt +4 -0
  13. {pyckster-25.12.1 → pyckster-25.12.3}/setup.py +5 -1
  14. pyckster-25.12.1/pyckster/__main__.py +0 -4
  15. pyckster-25.12.1/pyckster.egg-info/entry_points.txt +0 -3
  16. {pyckster-25.12.1 → pyckster-25.12.3}/LICENCE +0 -0
  17. {pyckster-25.12.1 → pyckster-25.12.3}/MANIFEST.in +0 -0
  18. {pyckster-25.12.1 → pyckster-25.12.3}/images/pyckster.png +0 -0
  19. {pyckster-25.12.1 → pyckster-25.12.3}/images/pyckster.svg +0 -0
  20. {pyckster-25.12.1 → pyckster-25.12.3}/images/screenshot_01.png +0 -0
  21. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/auto_picking.py +0 -0
  22. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/bayesian_inversion.py +0 -0
  23. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/inversion_manager.py +0 -0
  24. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/inversion_visualizer.py +0 -0
  25. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/ipython_console.py +0 -0
  26. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/obspy_utils.py +0 -0
  27. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/pac_inversion.py +0 -0
  28. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/pyqtgraph_utils.py +0 -0
  29. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/sw_utils.py +0 -0
  30. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/tab_factory.py +0 -0
  31. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster/visualization_utils.py +0 -0
  32. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster.egg-info/SOURCES.txt +0 -0
  33. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster.egg-info/dependency_links.txt +0 -0
  34. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster.egg-info/not-zip-safe +0 -0
  35. {pyckster-25.12.1 → pyckster-25.12.3}/pyckster.egg-info/top_level.txt +0 -0
  36. {pyckster-25.12.1 → pyckster-25.12.3}/setup.cfg +0 -0
@@ -1,3 +1,7 @@
1
+ v25.12.3, Dec. 2025 -- Add shot stacking, improved packaging, file handling, batch editing, minor display fixes
2
+
3
+ v25.12.2, Dec. 2025 -- Minor fixes, code cleanup
4
+
1
5
  v25.12.1, Dec. 2025 -- Major UI modification, improve loading picks logic, debug ipython consol, fix trace editing
2
6
 
3
7
  v25.11.1, Nov. 2025 -- Add autopicking, add spectro and dispersion views, minor fixes and improvements
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyckster
3
- Version: 25.12.1
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
@@ -49,6 +53,12 @@ Then you can simply download the package from PyPi:
49
53
  ``` bash
50
54
  pip install pyckster
51
55
  ```
56
+
57
+ To update PyCKSTER, run the following command:
58
+ ``` bash
59
+ pip install pyckster --upgrade
60
+ ```
61
+
52
62
  ## Running PyCKSTER
53
63
 
54
64
  Open a terminal and run:
@@ -21,6 +21,12 @@ Then you can simply download the package from PyPi:
21
21
  ``` bash
22
22
  pip install pyckster
23
23
  ```
24
+
25
+ To update PyCKSTER, run the following command:
26
+ ``` bash
27
+ pip install pyckster --upgrade
28
+ ```
29
+
24
30
  ## Running PyCKSTER
25
31
 
26
32
  Open a terminal and run:
@@ -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.1"
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()