From: peusterm Date: Mon, 7 Mar 2016 14:53:33 +0000 (+0100) Subject: Bugfix: We have to ensure to have the latest version of the six package installed... X-Git-Tag: v3.1~168^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2Fvim-emu.git;a=commitdiff_plain;h=a4edcd73e263c6869eef82e62a641bc2933f4a70 Bugfix: We have to ensure to have the latest version of the six package installed to get ryu to work --- diff --git a/ansible/install.yml b/ansible/install.yml index 9580f05..dd6ef4c 100755 --- a/ansible/install.yml +++ b/ansible/install.yml @@ -19,25 +19,25 @@ 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 + pip: name=six state=latest - name: install ryu - pip: name=ryu + pip: name=ryu state=latest - name: install oslo.config - pip: name=oslo.config + pip: name=oslo.config state=latest - name: install pytest - pip: name=pytest + pip: name=pytest state=latest diff --git a/setup.py b/setup.py index a3252bf..f134ffe 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup(name='emuvim', 'tabulate', 'argparse', 'networkx', - 'six', + 'six>=1.9', 'ryu', 'oslo.config', 'pytest'