kailash 0.9.2__py3-none-any.whl → 0.9.3__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.
kailash/__init__.py CHANGED
@@ -50,7 +50,7 @@ except ImportError:
50
50
  # For backward compatibility
51
51
  WorkflowGraph = Workflow
52
52
 
53
- __version__ = "0.9.2"
53
+ __version__ = "0.9.3"
54
54
 
55
55
  __all__ = [
56
56
  # Core workflow components
@@ -0,0 +1,9 @@
1
+ """
2
+ Kailash Analysis Module.
3
+
4
+ Provides analysis tools for workflow optimization and conditional execution.
5
+ """
6
+
7
+ from .conditional_branch_analyzer import ConditionalBranchAnalyzer
8
+
9
+ __all__ = ["ConditionalBranchAnalyzer"]