pyckster 25.12.3__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 (35) hide show
  1. {pyckster-25.12.3 → pyckster-25.12.4}/CHANGES.md +2 -0
  2. {pyckster-25.12.3/pyckster.egg-info → pyckster-25.12.4}/PKG-INFO +1 -1
  3. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/__init__.py +1 -1
  4. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/__main__.py +5 -0
  5. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/core.py +5 -0
  6. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/inversion_app.py +4 -1
  7. {pyckster-25.12.3 → pyckster-25.12.4/pyckster.egg-info}/PKG-INFO +1 -1
  8. pyckster-25.12.4/pyckster.egg-info/entry_points.txt +3 -0
  9. {pyckster-25.12.3 → pyckster-25.12.4}/setup.py +1 -1
  10. pyckster-25.12.3/pyckster.egg-info/entry_points.txt +0 -3
  11. {pyckster-25.12.3 → pyckster-25.12.4}/LICENCE +0 -0
  12. {pyckster-25.12.3 → pyckster-25.12.4}/MANIFEST.in +0 -0
  13. {pyckster-25.12.3 → pyckster-25.12.4}/README.md +0 -0
  14. {pyckster-25.12.3 → pyckster-25.12.4}/images/pyckster.png +0 -0
  15. {pyckster-25.12.3 → pyckster-25.12.4}/images/pyckster.svg +0 -0
  16. {pyckster-25.12.3 → pyckster-25.12.4}/images/screenshot_01.png +0 -0
  17. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/auto_picking.py +0 -0
  18. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/bayesian_inversion.py +0 -0
  19. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/inversion_manager.py +0 -0
  20. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/inversion_visualizer.py +0 -0
  21. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/ipython_console.py +0 -0
  22. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/obspy_utils.py +0 -0
  23. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/pac_inversion.py +0 -0
  24. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/pyqtgraph_utils.py +0 -0
  25. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/surface_wave_analysis.py +0 -0
  26. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/surface_wave_profiling.py +0 -0
  27. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/sw_utils.py +0 -0
  28. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/tab_factory.py +0 -0
  29. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster/visualization_utils.py +0 -0
  30. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster.egg-info/SOURCES.txt +0 -0
  31. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster.egg-info/dependency_links.txt +0 -0
  32. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster.egg-info/not-zip-safe +0 -0
  33. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster.egg-info/requires.txt +0 -0
  34. {pyckster-25.12.3 → pyckster-25.12.4}/pyckster.egg-info/top_level.txt +0 -0
  35. {pyckster-25.12.3 → pyckster-25.12.4}/setup.cfg +0 -0
@@ -1,3 +1,5 @@
1
+ v25.12.4, Dec. 2025 -- Minor dependency fix
2
+
1
3
  v25.12.3, Dec. 2025 -- Add shot stacking, improved packaging, file handling, batch editing, minor display fixes
2
4
 
3
5
  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: 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,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__ = "25.12.4"
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:
@@ -21,6 +21,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
21
21
 
22
22
  # Set locale FIRST before importing any numerical libraries that might depend on it
23
23
  import locale
24
+
25
+ # Set environment variable for locale (affects child processes and some libraries)
26
+ import os as _os_locale_setup
27
+ _os_locale_setup.environ['LC_NUMERIC'] = 'C'
28
+
24
29
  try:
25
30
  locale.setlocale(locale.LC_NUMERIC, 'C') # Ensure decimal point is '.'
26
31
  except locale.Error:
@@ -12,6 +12,10 @@ import os
12
12
 
13
13
  # Set locale FIRST before importing any numerical libraries that might depend on it
14
14
  import locale
15
+
16
+ # Set environment variable for locale (affects child processes and some libraries)
17
+ os.environ['LC_NUMERIC'] = 'C'
18
+
15
19
  try:
16
20
  locale.setlocale(locale.LC_NUMERIC, 'C') # Ensure decimal point is '.'
17
21
  except locale.Error:
@@ -19,7 +23,6 @@ except locale.Error:
19
23
 
20
24
  # Now import numerical and GUI libraries
21
25
  import numpy as np
22
- import pandas as pd
23
26
  import pygimli as pg
24
27
  from pygimli.physics import TravelTimeManager as refrac
25
28
  from PyQt5.QtWidgets import (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyckster
3
- Version: 25.12.3
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
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ pyckster = pyckster.core:main
3
+ pyckster-tt-inversion = pyckster.inversion_app:main
@@ -60,7 +60,7 @@ setup(
60
60
  entry_points={
61
61
  'console_scripts': [
62
62
  'pyckster=pyckster.core:main',
63
- 'pyckster-tt_inversion=pyckster.inversion_app:main',
63
+ 'pyckster-tt-inversion=pyckster.inversion_app:main',
64
64
  ],
65
65
  },
66
66
  include_package_data=True,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- pyckster = pyckster.core:main
3
- pyckster-tt_inversion = pyckster.inversion_app:main
File without changes
File without changes
File without changes
File without changes