fix: Do not install a version of ansible >= 2.10

This commit is contained in:
Mohamed El Mouctar HAIDARA 2020-11-03 00:28:36 +01:00
parent 77450f8a15
commit ea55d6c2ce
2 changed files with 3 additions and 3 deletions

View file

@ -10,8 +10,8 @@ this project is to quickly have an overview of your playbook.
Inspired by [Ansible Inventory Grapher](https://github.com/willthames/ansible-inventory-grapher).
## Prerequisites
* **Ansible** >= 2.8: The script has not been tested with an earlier version of Ansible, some features may not work.
If you still use an older version of Ansible, create an virtual environment and install ansible-playbook-grapher. **`pip install` will install a version of Ansible >= 2.8**
* **Ansible** >=2.8,<2.10: The script has not been tested with an earlier version of Ansible, some features may not work.
If you still use an older version of Ansible, create an virtual environment and install ansible-playbook-grapher. **`pip install` will install a version of Ansible >=2.8.0,<2.10**
* **graphviz**: The tool used to generate the graph in SVG.
```shell script

View file

@ -1,4 +1,4 @@
ansible>=2.8.0
ansible>=2.8.0,<2.10
graphviz==0.14.1
colour==0.1.5
lxml==4.5.2