gtrack 0.3.0__tar.gz → 0.3.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 (26) hide show
  1. {gtrack-0.3.0 → gtrack-0.3.1}/PKG-INFO +1 -1
  2. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/__init__.py +4 -1
  3. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/hpc_integration.py +0 -10
  4. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack.egg-info/PKG-INFO +1 -1
  5. {gtrack-0.3.0 → gtrack-0.3.1}/pyproject.toml +1 -1
  6. {gtrack-0.3.0 → gtrack-0.3.1}/README.md +0 -0
  7. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/boundaries.py +0 -0
  8. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/config.py +0 -0
  9. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/geometry.py +0 -0
  10. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/initial_conditions.py +0 -0
  11. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/io_formats.py +0 -0
  12. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/logging.py +0 -0
  13. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/mesh.py +0 -0
  14. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/mor_seeds.py +0 -0
  15. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/point_rotation.py +0 -0
  16. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/polygon_filter.py +0 -0
  17. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack/spatial.py +0 -0
  18. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack.egg-info/SOURCES.txt +0 -0
  19. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack.egg-info/dependency_links.txt +0 -0
  20. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack.egg-info/requires.txt +0 -0
  21. {gtrack-0.3.0 → gtrack-0.3.1}/gtrack.egg-info/top_level.txt +0 -0
  22. {gtrack-0.3.0 → gtrack-0.3.1}/setup.cfg +0 -0
  23. {gtrack-0.3.0 → gtrack-0.3.1}/tests/test_core.py +0 -0
  24. {gtrack-0.3.0 → gtrack-0.3.1}/tests/test_geometry.py +0 -0
  25. {gtrack-0.3.0 → gtrack-0.3.1}/tests/test_point_rotation.py +0 -0
  26. {gtrack-0.3.0 → gtrack-0.3.1}/tests/test_regression.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gtrack
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: GPlates-based Tracking of Lithosphere and Kinematics
5
5
  Author: S. Ghelichkhani
6
6
  License: MIT
@@ -46,7 +46,7 @@ Example
46
46
  ... cloud = tracker.step_to(age)
47
47
  """
48
48
 
49
- __version__ = "0.2.0"
49
+ __version__ = "0.3.1"
50
50
 
51
51
  # Logging configuration (import first to configure before other modules)
52
52
  from .logging import (
@@ -58,6 +58,9 @@ from .logging import (
58
58
  get_logger,
59
59
  )
60
60
 
61
+ # Configure logging with default level (WARNING) immediately on import
62
+ configure_logging()
63
+
61
64
  # Core seafloor age functionality
62
65
  from .config import TracerConfig
63
66
  from .hpc_integration import SeafloorAgeTracker
@@ -75,17 +75,11 @@ class SeafloorAgeTracker:
75
75
  topology_files: Union[str, List[str]],
76
76
  continental_polygons: Optional[str] = None,
77
77
  config: Optional[TracerConfig] = None,
78
- verbose: bool = True,
79
78
  ):
80
79
  from .geometry import ensure_list
81
80
 
82
81
  self._config = config if config else TracerConfig()
83
82
 
84
- # Handle deprecated verbose flag
85
- if verbose:
86
- from .logging import enable_verbose
87
- enable_verbose()
88
-
89
83
  # Handle single file or Path as list
90
84
  rotation_files = ensure_list(rotation_files)
91
85
  topology_files = ensure_list(topology_files)
@@ -794,7 +788,6 @@ class SeafloorAgeTracker:
794
788
  topology_files: Union[str, List[str]],
795
789
  continental_polygons: Optional[str] = None,
796
790
  config: Optional[TracerConfig] = None,
797
- verbose: bool = True,
798
791
  ) -> PointCloud:
799
792
  """
800
793
  One-shot computation of seafloor ages (functional interface).
@@ -816,8 +809,6 @@ class SeafloorAgeTracker:
816
809
  Path to continental polygon file.
817
810
  config : TracerConfig, optional
818
811
  Configuration parameters.
819
- verbose : bool, default=True
820
- Print progress information.
821
812
 
822
813
  Returns
823
814
  -------
@@ -839,7 +830,6 @@ class SeafloorAgeTracker:
839
830
  topology_files=topology_files,
840
831
  continental_polygons=continental_polygons,
841
832
  config=config,
842
- verbose=verbose,
843
833
  )
844
834
 
845
835
  tracker.initialize(starting_age)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gtrack
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: GPlates-based Tracking of Lithosphere and Kinematics
5
5
  Author: S. Ghelichkhani
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "gtrack"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "GPlates-based Tracking of Lithosphere and Kinematics"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes