Bugfix: We have to ensure to have the latest version of the six package installed...
[osm/vim-emu.git] / ansible / install.yml
index a374e0b..dd6ef4c 100755 (executable)
    - name: install pip
      apt: pkg=python-pip state=installed
 
+   - name: install setuptools
+     pip: name=setuptools state=latest
+
    - name: install zerorpc
-     pip: name=zerorpc
+     pip: name=zerorpc state=latest
 
    - name: install tabulate
-     pip: name=tabulate
+     pip: name=tabulate state=latest
 
    - name: install argparse
-     pip: name=argparse
+     pip: name=argparse state=latest
 
    - name: install networkx
-     pip: name=networkx
+     pip: name=networkx state=latest
+
+   - name: install six
+     pip: name=six state=latest
 
    - name: install ryu
-     pip: name=ryu
\ No newline at end of file
+     pip: name=ryu state=latest
+     
+   - name: install oslo.config
+     pip: name=oslo.config state=latest
+
+   - name: install pytest
+     pip: name=pytest state=latest