2039d7c4cb
pip uses python-requests. In jessie the system version is 2.4.3 but requirements.txt wants 2.7.0. the system version of pip (1.5.6) can not use the 2.7.0 version of requests so pip must be updated before we start pulling down other requirements that may end up with a newer version of requests.
28 lines
816 B
YAML
28 lines
816 B
YAML
---
|
|
|
|
- hosts: all
|
|
sudo: yes
|
|
tasks:
|
|
# Setup additional development tools
|
|
- apt: name=vim state=present
|
|
- apt: name=tmux state=present
|
|
- apt: name=htop state=present
|
|
#- apt: name=python-virtualenv state=present
|
|
#- apt: name=virtualenvwrapper state=present
|
|
- apt: name=ipython state=present
|
|
- apt: name=python-pudb state=present
|
|
- apt: name=python-pip state=present
|
|
- apt: name=python-mysqldb state=present
|
|
- shell: pip install -U pip
|
|
- shell: pip install docker-py==1.1.0
|
|
|
|
# requirements
|
|
- shell: pip install -r /vagrant/requirements.txt
|
|
|
|
# Graph drawing
|
|
#- apt: name=python-matplotlib state=present
|
|
- apt: name=python-pygraphviz state=present
|
|
|
|
# Setup development env for solar
|
|
#- shell: python setup.py develop chdir=/vagrant/solar
|