mirror of
https://github.com/haidaraM/ansible-playbook-grapher
synced 2024-11-12 23:17:07 +00:00
fix: Do not install a version of ansible >= 2.10
This commit is contained in:
parent
77450f8a15
commit
ea55d6c2ce
2 changed files with 3 additions and 3 deletions
|
@ -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).
|
Inspired by [Ansible Inventory Grapher](https://github.com/willthames/ansible-inventory-grapher).
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
* **Ansible** >= 2.8: The script has not been tested with an earlier version of Ansible, some features may not work.
|
* **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**
|
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.
|
* **graphviz**: The tool used to generate the graph in SVG.
|
||||||
```shell script
|
```shell script
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ansible>=2.8.0
|
ansible>=2.8.0,<2.10
|
||||||
graphviz==0.14.1
|
graphviz==0.14.1
|
||||||
colour==0.1.5
|
colour==0.1.5
|
||||||
lxml==4.5.2
|
lxml==4.5.2
|
||||||
|
|
Loading…
Reference in a new issue