pyckster 25.12.1__tar.gz → 25.12.2__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.1 → pyckster-25.12.2}/CHANGES.md +2 -0
- {pyckster-25.12.1/pyckster.egg-info → pyckster-25.12.2}/PKG-INFO +7 -1
- {pyckster-25.12.1 → pyckster-25.12.2}/README.md +6 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/__init__.py +1 -1
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/core.py +291 -591
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/surface_wave_analysis.py +19 -3
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/surface_wave_profiling.py +19 -3
- {pyckster-25.12.1 → pyckster-25.12.2/pyckster.egg-info}/PKG-INFO +7 -1
- {pyckster-25.12.1 → pyckster-25.12.2}/LICENCE +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/MANIFEST.in +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/images/pyckster.png +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/images/pyckster.svg +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/images/screenshot_01.png +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/__main__.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/auto_picking.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/bayesian_inversion.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/inversion_app.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/inversion_manager.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/inversion_visualizer.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/ipython_console.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/obspy_utils.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/pac_inversion.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/pyqtgraph_utils.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/sw_utils.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/tab_factory.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster/visualization_utils.py +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/SOURCES.txt +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/dependency_links.txt +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/entry_points.txt +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/not-zip-safe +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/requires.txt +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/pyckster.egg-info/top_level.txt +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/setup.cfg +0 -0
- {pyckster-25.12.1 → pyckster-25.12.2}/setup.py +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
v25.12.2, Dec. 2025 -- Minor fixes, code cleanup
|
|
2
|
+
|
|
1
3
|
v25.12.1, Dec. 2025 -- Major UI modification, improve loading picks logic, debug ipython consol, fix trace editing
|
|
2
4
|
|
|
3
5
|
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.
|
|
3
|
+
Version: 25.12.2
|
|
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
|
|
@@ -49,6 +49,12 @@ Then you can simply download the package from PyPi:
|
|
|
49
49
|
``` bash
|
|
50
50
|
pip install pyckster
|
|
51
51
|
```
|
|
52
|
+
|
|
53
|
+
To update PyCKSTER, run the following command:
|
|
54
|
+
``` bash
|
|
55
|
+
pip install pyckster --upgrade
|
|
56
|
+
```
|
|
57
|
+
|
|
52
58
|
## Running PyCKSTER
|
|
53
59
|
|
|
54
60
|
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.
|
|
18
|
+
__version__ = "25.12.2"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|