diff --git a/ansible_collections/arista/avd/docs/release-notes/5.x.x.md b/ansible_collections/arista/avd/docs/release-notes/5.x.x.md index d8b1d4f432b..293adc7f7b8 100644 --- a/ansible_collections/arista/avd/docs/release-notes/5.x.x.md +++ b/ansible_collections/arista/avd/docs/release-notes/5.x.x.md @@ -18,6 +18,8 @@ title: Release Notes for AVD 5.x.x - AVD v.5.0.0 requires Python version 3.10 or newer. - AVD no longer depends on the `jsonschema` Python library. +- AVD now requires the `cvprac` Python library to be version 1.4.0 or higher.
+ The latest version can be installed with `pip install "cvprac>=1.4.0" --upgrade`. ### Removal of Ansible plugins diff --git a/python-avd/pyproject.toml b/python-avd/pyproject.toml index 58af7bba8ef..fa675005a9c 100644 --- a/python-avd/pyproject.toml +++ b/python-avd/pyproject.toml @@ -37,7 +37,7 @@ ansible = [ ] ansible-collection = [ "anta>=1.0.0", - "cvprac>=1.3.1", + "cvprac>=1.4.0", "netaddr>=0.7.19", "PyYAML>=6.0.0", "treelib>=1.5.5",