devel: Fix autopep8 and pylint installations on macOS
This commit is contained in:
parent
b3fb9d8289
commit
3a4f5d2d3a
1 changed files with 9 additions and 2 deletions
|
|
@ -54,9 +54,16 @@
|
||||||
code --install-extension ms-vscode.cmake-tools
|
code --install-extension ms-vscode.cmake-tools
|
||||||
|
|
||||||
# VS Code - Python Development Tools
|
# VS Code - Python Development Tools
|
||||||
- name: Devel - Python - Install python dev packages
|
- name: Devel - Python - Install python dev packages (macOS)
|
||||||
tags: lang_python
|
tags: lang_python
|
||||||
when: user_lang_python
|
when: user_lang_python and (override_os_family is defined) | ternary(override_os_family,ansible_facts['os_family']) == "Darwin"
|
||||||
|
ansible.builtin.homebrew:
|
||||||
|
name:
|
||||||
|
- autopep8
|
||||||
|
- pylint
|
||||||
|
- name: Devel - Python - Install python dev packages (non macOS)
|
||||||
|
tags: lang_python
|
||||||
|
when: user_lang_python and not (override_os_family is defined) | ternary(override_os_family,ansible_facts['os_family']) == "Darwin"
|
||||||
ansible.builtin.pip:
|
ansible.builtin.pip:
|
||||||
name:
|
name:
|
||||||
- autopep8
|
- autopep8
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue