Skip to content

Commit

Permalink
Update python dependencies
Browse files Browse the repository at this point in the history
Change-Id: I5b65839e59e3147cfa759fbc483055dae25456b2
  • Loading branch information
9seconds committed May 4, 2017
1 parent c2fd63b commit f701bb6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
20 changes: 10 additions & 10 deletions constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,45 +3,45 @@
# ^^^^^^^^^^^^^^^^^^
# These lines matter

ansible==2.2.0.0
ansible-lint==3.3.3
ansible==2.3.0.0
ansible-lint==3.4.13
argon2_cffi==16.3.0
bandit==1.4.0
click==6.7
fauxfactory==2.0.9
fauxfactory==2.1.0
flake8==3.3.0
flake8-bugbear==17.3.0
flake8-bugbear==17.4.0
flake8-builtins==0.2
flake8-coding==1.3.0
flake8-comprehensions==1.2.1
flake8-comprehensions==1.3.0
flake8-debugger==1.4.0
flake8-import-order==0.12
flake8-mutable==1.1.0
flake8-mutable==1.2.0
flake8-polyfill==1.0.1
flake8-quotes==0.9.0
flake8-string-format==0.2.3
ipaddr==2.1.11
ipdb==0.10.1
ipython==5.1.0
lockfile==0.12.2
mongomock==3.7.0
mongomock==3.8.0
pep8-naming==0.4.1
pycodestyle==2.3.1
pycparser!=2.15
pygments-style-github==0.4
pytest==3.0.6
pytest==3.0.7
pytest-cov==2.4.0
pytest-fauxfactory==1.0
pytest-flask==0.10.0
pytest-profiling==1.2.6
python-daemon==2.1.1
PyYAML==3.12
radon==1.4.2
radon==1.5.0
requests==2.12.1
see==1.3.2
six==1.10.0
Sphinx==1.5.1
sphinx-rtd-theme==0.1.9
uwsgi==2.0.14
uwsgi==2.0.15
vulture==0.10
xenon==0.5.0
2 changes: 2 additions & 0 deletions devenv/roles/base/tasks/ssh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
shell: ssh-keyscan -T 10 -H {{ item }} >> .ssh/known_hosts
with_items: "{{ ssh_known_hosts }}"
when: no_known_hosts.changed
tags:
- skip_ansible_lint

- name: Copy local keypair to the box
copy: src=~/.ssh/{{ item }}
Expand Down
4 changes: 4 additions & 0 deletions devenv/roles/mongodb/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@
become: true
command: systemctl enable mongodb.service
when: script_result.changed
tags:
- skip_ansible_lint

- name: Restart mongodb service
become: true
command: systemctl restart mongodb.service
when: script_result.changed
tags:
- skip_ansible_lint
2 changes: 2 additions & 0 deletions devenv/roles/sarkhipov/tasks/dotfiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@
command: bash -ic "stow -t ~ -R {{ item }}" chdir=.dotfiles
with_items: "{{ stow_dotfiles }}"
when: dotfiles.changed
tags:
- skip_ansible_lint
2 changes: 2 additions & 0 deletions devenv/roles/sarkhipov/tasks/keychain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@
lineinfile: dest=.bashrc
line='eval "$(keychain --nocolor --eval --agents ssh,gpg id_rsa 2> /dev/null)"'
when: keychain_installed.changed
tags:
- skip_ansible_lint

0 comments on commit f701bb6

Please sign in to comment.