Skip to content
This repository has been archived by the owner on Nov 27, 2017. It is now read-only.

Add python futures package #2

Open
wants to merge 1 commit into
base: testing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions pkgs/python/futures.sls
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
include:
- pkgs.python.pip

futures:
pip.installed:
{%- if salt['config.get']('virtualenv_name', None) %}
- bin_env: /srv/virtualenvs/{{ salt['config.get']('virtualenv_name') }}
{%- endif %}
- index_url: https://pypi-jenkins.saltstack.com/jenkins/develop
- extra_index_url: https://pypi.python.org/simple
- require:
- pip: pip
3 changes: 3 additions & 0 deletions projects/salt/2014/7/unit.sls
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ include:
- pkgs.python.moto
- pkgs.python.psutil
- pkgs.python.tornado
{%- if grains.get('pythonversion')[:2] < [3, 2] %}
- pkgs.python.futures
{%- endif %}
{%- if test_transport == 'raet' %}
- pkgs.python.libnacl
- pkgs.python.ioflo
Expand Down
3 changes: 3 additions & 0 deletions projects/salt/2015/2/unit.sls
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ include:
- pkgs.python.moto
- pkgs.python.psutil
- pkgs.python.tornado
{%- if grains.get('pythonversion')[:2] < [3, 2] %}
- pkgs.python.futures
{%- endif %}
{%- if test_transport == 'raet' %}
- pkgs.python.libnacl
- pkgs.python.ioflo
Expand Down
3 changes: 3 additions & 0 deletions projects/salt/develop/unit.sls
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ include:
- pkgs.python.moto
- pkgs.python.psutil
- pkgs.python.tornado
{%- if grains.get('pythonversion')[:2] < [3, 2] %}
- pkgs.python.futures
{%- endif %}
- pkgs.python.dnspython
{%- if test_transport == 'raet' %}
- pkgs.python.libnacl
Expand Down