- Pin pre-commit ansible-lint hook to ansible-core==2.17.* (was floating, crashed) - Add pre-commit to requirements.txt - Align .yamllint with ansible-lint (comments-indentation off, octal rules on) - Rewrite inventory placeholders to lint-clean empty-group form Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
474 B
Text
12 lines
474 B
Text
# Python dependencies for Ansible control node
|
|
# Pin versions for reproducibility. Update deliberately.
|
|
|
|
ansible-core==2.17.*
|
|
ansible-lint==24.*
|
|
molecule==24.*
|
|
molecule-plugins[docker]==23.*
|
|
yamllint==1.35.*
|
|
pre-commit==3.* # Runs lint + secret-scan hooks (.pre-commit-config.yaml)
|
|
docker==7.* # Python SDK for Docker (used by Molecule)
|
|
pytest==8.* # Required by Molecule test runner
|
|
pytest-testinfra==10.* # Optional: infra assertions in verify.yml
|