pyckster 25.12.3__tar.gz → 26.1.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.
Files changed (37) hide show
  1. {pyckster-25.12.3 → pyckster-26.1.1}/CHANGES.md +4 -0
  2. {pyckster-25.12.3/pyckster.egg-info → pyckster-26.1.1}/PKG-INFO +8 -1
  3. {pyckster-25.12.3 → pyckster-26.1.1}/README.md +7 -0
  4. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/__init__.py +1 -1
  5. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/__main__.py +5 -0
  6. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/core.py +3463 -583
  7. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/inversion_app.py +4 -1
  8. pyckster-26.1.1/pyckster/mpl_export.py +354 -0
  9. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/obspy_utils.py +41 -0
  10. pyckster-26.1.1/pyckster/pick_io.py +445 -0
  11. {pyckster-25.12.3 → pyckster-26.1.1/pyckster.egg-info}/PKG-INFO +8 -1
  12. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster.egg-info/SOURCES.txt +2 -0
  13. pyckster-26.1.1/pyckster.egg-info/entry_points.txt +3 -0
  14. {pyckster-25.12.3 → pyckster-26.1.1}/setup.py +1 -1
  15. pyckster-25.12.3/pyckster.egg-info/entry_points.txt +0 -3
  16. {pyckster-25.12.3 → pyckster-26.1.1}/LICENCE +0 -0
  17. {pyckster-25.12.3 → pyckster-26.1.1}/MANIFEST.in +0 -0
  18. {pyckster-25.12.3 → pyckster-26.1.1}/images/pyckster.png +0 -0
  19. {pyckster-25.12.3 → pyckster-26.1.1}/images/pyckster.svg +0 -0
  20. {pyckster-25.12.3 → pyckster-26.1.1}/images/screenshot_01.png +0 -0
  21. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/auto_picking.py +0 -0
  22. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/bayesian_inversion.py +0 -0
  23. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/inversion_manager.py +0 -0
  24. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/inversion_visualizer.py +0 -0
  25. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/ipython_console.py +0 -0
  26. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/pac_inversion.py +0 -0
  27. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/pyqtgraph_utils.py +0 -0
  28. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/surface_wave_analysis.py +0 -0
  29. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/surface_wave_profiling.py +0 -0
  30. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/sw_utils.py +0 -0
  31. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/tab_factory.py +0 -0
  32. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster/visualization_utils.py +0 -0
  33. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster.egg-info/dependency_links.txt +0 -0
  34. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster.egg-info/not-zip-safe +0 -0
  35. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster.egg-info/requires.txt +0 -0
  36. {pyckster-25.12.3 → pyckster-26.1.1}/pyckster.egg-info/top_level.txt +0 -0
  37. {pyckster-25.12.3 → pyckster-26.1.1}/setup.cfg +0 -0
@@ -1,3 +1,7 @@
1
+ v26.1.1, Jan. 2026 -- Code cleanup, minor bug fixes and improvements, add dispersion picking feature
2
+
3
+ v25.12.4, Dec. 2025 -- Minor dependency fix
4
+
1
5
  v25.12.3, Dec. 2025 -- Add shot stacking, improved packaging, file handling, batch editing, minor display fixes
2
6
 
3
7
  v25.12.2, Dec. 2025 -- Minor fixes, code cleanup
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyckster
3
- Version: 25.12.3
3
+ Version: 26.1.1
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
@@ -59,6 +59,13 @@ To update PyCKSTER, run the following command:
59
59
  pip install pyckster --upgrade
60
60
  ```
61
61
 
62
+ ## Troubleshooting
63
+
64
+ If numpy > 2 is installed in your environment, you might not be able to run pygimli. If so you can downgrade numpy with the following command :
65
+ ``` bash
66
+ pip install numpy==1.26.4 --upgrade
67
+ ```
68
+
62
69
  ## Running PyCKSTER
63
70
 
64
71
  Open a terminal and run:
@@ -27,6 +27,13 @@ To update PyCKSTER, run the following command:
27
27
  pip install pyckster --upgrade
28
28
  ```
29
29
 
30
+ ## Troubleshooting
31
+
32
+ If numpy > 2 is installed in your environment, you might not be able to run pygimli. If so you can downgrade numpy with the following command :
33
+ ``` bash
34
+ pip install numpy==1.26.4 --upgrade
35
+ ```
36
+
30
37
  ## Running PyCKSTER
31
38
 
32
39
  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.3"
18
+ __version__ = "26.1.1"
19
19
  __author__ = "Sylvain Pasquet"
20
20
  __email__ = "sylvain.pasquet@sorbonne-universite.fr"
21
21
  __license__ = "GPLv3"
@@ -1,5 +1,10 @@
1
1
  # Set locale FIRST before importing anything else
2
+ import os
2
3
  import locale
4
+
5
+ # Set environment variable for locale (affects child processes and some libraries)
6
+ os.environ['LC_NUMERIC'] = 'C'
7
+
3
8
  try:
4
9
  locale.setlocale(locale.LC_NUMERIC, 'C') # Ensure decimal point is '.'
5
10
  except locale.Error: