Using uv instead of pipx

This commit is contained in:
Ivan Golikov 2025-01-10 14:22:30 +01:00
parent 3d0997e129
commit 6ee15eadc6

View file

@ -12,19 +12,20 @@
- git
- difftastic
- tldr
- pyenv
- uv
brew_packages:
- pipx
pacman_packages:
- python-pipx
pipx_packages:
uv_packages:
- aider-chat
- asciinema
- poetry
- basedpyright
- pre-commit
- posting
- ipython
macos_fish_path: /usr/local/bin/fish
arch_fish_path: /usr/bin/fish
@ -58,9 +59,11 @@
become: true
when: is_arch
- name: Install pipx packages
ansible.builtin.command: "pipx install {{ item }}"
loop: "{{ pipx_packages }}"
- name: Install uv packages
ansible.builtin.command: "pipx tool install {{ item }}"
loop: "{{ uv_packages }}"
tags:
- dev_tools
- name: Set fish as default shell
become: true