rust-crate-pipeline 1.2.6__py3-none-any.whl → 1.5.1__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.
@@ -8,15 +8,15 @@ Includes AI-powered enrichment using local LLMs and dependency analysis.
8
8
  Example usage:
9
9
  from rust_crate_pipeline import CrateDataPipeline
10
10
  from rust_crate_pipeline.main import main
11
-
11
+
12
12
  # Run the main pipeline
13
13
  main()
14
-
14
+
15
15
  # Or use the pipeline class directly
16
16
  config = PipelineConfig()
17
17
  pipeline = CrateDataPipeline(config)
18
18
  pipeline.run()
19
-
19
+
20
20
  Components:
21
21
  - CrateDataPipeline: Main orchestration class
22
22
  - PipelineConfig: Configuration management
@@ -33,10 +33,10 @@ __license__ = "MIT"
33
33
  try:
34
34
  from .pipeline import CrateDataPipeline
35
35
  from .config import PipelineConfig
36
-
36
+
37
37
  __all__ = [
38
38
  "CrateDataPipeline",
39
- "PipelineConfig",
39
+ "PipelineConfig",
40
40
  "__version__",
41
41
  "__author__",
42
42
  "__email__",
@@ -49,4 +49,13 @@ except ImportError:
49
49
  "__author__",
50
50
  "__email__",
51
51
  "__license__"
52
- ]
52
+ ]
53
+
54
+ # Suppress specific warnings at the package initialization level
55
+ import warnings
56
+ # Rule Zero Compliance: Suppress third-party Pydantic deprecation warnings
57
+ warnings.filterwarnings("ignore",
58
+ message=".*Support for class-based.*config.*is deprecated.*",
59
+ category=DeprecationWarning)
60
+ warnings.filterwarnings("ignore", category=UserWarning, module=".*rust_crate_pipeline.*")
61
+ warnings.filterwarnings("ignore", category=DeprecationWarning, module=".*rust_crate_pipeline.*")