Support Virtualenv (Fix #10)

Support the installation of packages in a specific virtualenv.
This commit is contained in:
Victor da Costa 2018-04-30 16:37:41 +02:00 committed by GitHub
parent c61a503a55
commit afe14be0f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -8,5 +8,6 @@
pip:
name: "{{ item.name | default(item) }}"
version: "{{ item.version | default(omit) }}"
virtualenv: "{{ item.virtualenv | default(omit) }}"
state: "{{ item.state | default(omit) }}"
with_items: "{{ pip_install_packages }}"