Skip to content

Commit

Permalink
Display ansible-compat version alongwith with other deps (#3584)
Browse files Browse the repository at this point in the history
  • Loading branch information
audgirka committed Jun 21, 2023
1 parent 79f82b2 commit 63d26bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def get_deps_versions() -> dict[str, Version | None]:
"""Return versions of most important dependencies."""
result: dict[str, Version | None] = {}

for name in ["ansible-core", "ruamel-yaml", "ruamel-yaml-clib"]:
for name in ["ansible-core", "ansible-compat", "ruamel-yaml", "ruamel-yaml-clib"]:
try:
result[name] = Version(version(name))
except PackageNotFoundError:
Expand Down

0 comments on commit 63d26bb

Please sign in to comment.