Add new dependencies and perhaps a maintainer for DPS

This commit is contained in:
Gašper Fele-Žorž 2025-08-19 18:03:28 +02:00
parent eb1e6012bd
commit d0b2a77216
4 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_os_family == 'Windows'
- import_tasks: main_lin.yml
when: ansible_os_family == 'Debian'

View file

@ -0,0 +1,5 @@
- name: Install numpy
apt:
name:
- python3-numpy
state: latest

View file

@ -0,0 +1,2 @@
- name: Install numpy
win_command: pip install numpy