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

@ -1,8 +1,11 @@
# Digitalno procesiranje signalov
# Aleks.Huc@fri.uni-lj.si
# metod.celestina@dewesoft.si
# Windows, GNU/Linux, Matlab, wfdb, Octave, Audacity
dependencies:
- role: matlab
- role: wfdb
- role: octave
- role: audacity
- role: numpy
- role: matplotlib

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