pyckster 25.12.2__tar.gz → 25.12.4__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.2 → pyckster-25.12.4}/CHANGES.md +4 -0
  2. {pyckster-25.12.2/pyckster.egg-info → pyckster-25.12.4}/PKG-INFO +5 -1
  3. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/__init__.py +1 -1
  4. pyckster-25.12.4/pyckster/__main__.py +16 -0
  5. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/core.py +940 -142
  6. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/inversion_app.py +13 -4
  7. {pyckster-25.12.2 → pyckster-25.12.4/pyckster.egg-info}/PKG-INFO +5 -1
  8. pyckster-25.12.4/pyckster.egg-info/entry_points.txt +3 -0
  9. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster.egg-info/requires.txt +4 -0
  10. {pyckster-25.12.2 → pyckster-25.12.4}/setup.py +5 -1
  11. pyckster-25.12.2/pyckster/__main__.py +0 -4
  12. pyckster-25.12.2/pyckster.egg-info/entry_points.txt +0 -3
  13. {pyckster-25.12.2 → pyckster-25.12.4}/LICENCE +0 -0
  14. {pyckster-25.12.2 → pyckster-25.12.4}/MANIFEST.in +0 -0
  15. {pyckster-25.12.2 → pyckster-25.12.4}/README.md +0 -0
  16. {pyckster-25.12.2 → pyckster-25.12.4}/images/pyckster.png +0 -0
  17. {pyckster-25.12.2 → pyckster-25.12.4}/images/pyckster.svg +0 -0
  18. {pyckster-25.12.2 → pyckster-25.12.4}/images/screenshot_01.png +0 -0
  19. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/auto_picking.py +0 -0
  20. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/bayesian_inversion.py +0 -0
  21. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/inversion_manager.py +0 -0
  22. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/inversion_visualizer.py +0 -0
  23. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/ipython_console.py +0 -0
  24. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/obspy_utils.py +0 -0
  25. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/pac_inversion.py +0 -0
  26. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/pyqtgraph_utils.py +0 -0
  27. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/surface_wave_analysis.py +0 -0
  28. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/surface_wave_profiling.py +0 -0
  29. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/sw_utils.py +0 -0
  30. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/tab_factory.py +0 -0
  31. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster/visualization_utils.py +0 -0
  32. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster.egg-info/SOURCES.txt +0 -0
  33. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster.egg-info/dependency_links.txt +0 -0
  34. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster.egg-info/not-zip-safe +0 -0
  35. {pyckster-25.12.2 → pyckster-25.12.4}/pyckster.egg-info/top_level.txt +0 -0
  36. {pyckster-25.12.2 → pyckster-25.12.4}/setup.cfg +0 -0
@@ -1,3 +1,7 @@
1
+ v25.12.4, Dec. 2025 -- Minor dependency fix
2
+
3
+ v25.12.3, Dec. 2025 -- Add shot stacking, improved packaging, file handling, batch editing, minor display fixes
4
+
1
5
  v25.12.2, Dec. 2025 -- Minor fixes, code cleanup
2
6
 
3
7
  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.2
3
+ Version: 25.12.4
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.2"
18
+ __version__ = "25.12.4"
19
19
  __author__ = "Sylvain Pasquet"
20
20
  __email__ = "sylvain.pasquet@sorbonne-universite.fr"
21
21
  __license__ = "GPLv3"
@@ -0,0 +1,16 @@
1
+ # Set locale FIRST before importing anything else
2
+ import os
3
+ import locale
4
+
5
+ # Set environment variable for locale (affects child processes and some libraries)
6
+ os.environ['LC_NUMERIC'] = 'C'
7
+
8
+ try:
9
+ locale.setlocale(locale.LC_NUMERIC, 'C') # Ensure decimal point is '.'
10
+ except locale.Error:
11
+ pass # Fallback if 'C' locale is not available
12
+
13
+ from .core import main
14
+
15
+ if __name__ == "__main__":
16
+ main()