Hi,
you are defining xmltodict as a dependency for for ansible.utils.keep_keys. But you are restricting it to a specific version:
xmltodict==0.13.0
ansible.utils only definds a dependency to that library without a version. In our current Ansible EE build where we install your collection azure.azcollection >=3.10.0 we run into a conflict because azure.azcollection now needs a
xmltodict>=1.0.2 .
This leads to a build error because both are not possible at the same time. Is there a specific reason why you need to restrict it to 0.13.0 and can that be changed to >= 0.13.0 or higher? Or maybe completely remove that dependency when you only need it for something ansible.utils needs?