diff --git a/docs/changelog.rst b/docs/changelog.rst index c620ed153..885347c22 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -22,6 +22,7 @@ v0.3.4.dev0 * :gh:issue:`929` Support Ansible 6 and ansible-core 2.13 * :gh:issue:`832` Fix runtime error when using the ansible.builtin.dnf module multiple times +* :gh:issue:`947` Provide `ansible` extra which installs compatible version of ansible-core v0.3.3 (2022-06-03) ------------------- diff --git a/setup.py b/setup.py index 9d2ff36f0..fab7e89b5 100644 --- a/setup.py +++ b/setup.py @@ -81,4 +81,7 @@ def long_description(): 'Topic :: System :: Distributed Computing', 'Topic :: System :: Systems Administration', ], + extras_require = { + 'ansible': ['ansible-core>=2.10,<2.14'], + }, )