Using uv instead of pipx
This commit is contained in:
parent
3d0997e129
commit
6ee15eadc6
1 changed files with 10 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue