Add python3-cryptography

This commit is contained in:
Gašper Fele-Žorž 2025-09-10 14:21:31 +02:00
parent a0713cd89a
commit d03aa86378
4 changed files with 12 additions and 0 deletions

View file

@ -14,4 +14,5 @@ dependencies:
- role: jdk
- role: jupyter
- role: pycharm
- role: cryptography
- role: flask

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 python-cryptography
apt:
name:
- python3-cryptography
state: latest

View file

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