config/roles/dev/tasks/python.yml
2025-12-27 18:03:01 +03:00

21 lines
396 B
YAML

- name: Installing tools for python dev
become: true
ansible.builtin.dnf5:
name:
- python
- pip
- pipx
- uv
state: latest
- name: Install ty typechecker
ansible.builtin.command:
cmd: "uv tool install ty@latest"
changed_when: false
- name: Install ruff lineter
ansible.builtin.command:
cmd: "uv tool install ruff@latest"
changed_when: false