pyckster 25.12.2__py3-none-any.whl → 25.12.4__py3-none-any.whl
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/__init__.py +1 -1
- pyckster/__main__.py +12 -0
- pyckster/core.py +940 -142
- pyckster/inversion_app.py +13 -4
- {pyckster-25.12.2.dist-info → pyckster-25.12.4.dist-info}/METADATA +5 -1
- {pyckster-25.12.2.dist-info → pyckster-25.12.4.dist-info}/RECORD +10 -10
- pyckster-25.12.4.dist-info/entry_points.txt +3 -0
- pyckster-25.12.2.dist-info/entry_points.txt +0 -3
- {pyckster-25.12.2.dist-info → pyckster-25.12.4.dist-info}/WHEEL +0 -0
- {pyckster-25.12.2.dist-info → pyckster-25.12.4.dist-info}/licenses/LICENCE +0 -0
- {pyckster-25.12.2.dist-info → pyckster-25.12.4.dist-info}/top_level.txt +0 -0
pyckster/__init__.py
CHANGED
|
@@ -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.4"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|
pyckster/__main__.py
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
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
|
+
|
|
1
13
|
from .core import main
|
|
2
14
|
|
|
3
15
|
if __name__ == "__main__":
|