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
|
- git
|
||||||
- difftastic
|
- difftastic
|
||||||
- tldr
|
- tldr
|
||||||
- pyenv
|
- uv
|
||||||
|
|
||||||
brew_packages:
|
brew_packages:
|
||||||
- pipx
|
|
||||||
|
|
||||||
pacman_packages:
|
pacman_packages:
|
||||||
- python-pipx
|
|
||||||
|
|
||||||
pipx_packages:
|
uv_packages:
|
||||||
|
- aider-chat
|
||||||
|
- asciinema
|
||||||
- poetry
|
- poetry
|
||||||
- basedpyright
|
- basedpyright
|
||||||
- pre-commit
|
- pre-commit
|
||||||
- posting
|
- posting
|
||||||
|
- ipython
|
||||||
|
|
||||||
macos_fish_path: /usr/local/bin/fish
|
macos_fish_path: /usr/local/bin/fish
|
||||||
arch_fish_path: /usr/bin/fish
|
arch_fish_path: /usr/bin/fish
|
||||||
|
@ -58,9 +59,11 @@
|
||||||
become: true
|
become: true
|
||||||
when: is_arch
|
when: is_arch
|
||||||
|
|
||||||
- name: Install pipx packages
|
- name: Install uv packages
|
||||||
ansible.builtin.command: "pipx install {{ item }}"
|
ansible.builtin.command: "pipx tool install {{ item }}"
|
||||||
loop: "{{ pipx_packages }}"
|
loop: "{{ uv_packages }}"
|
||||||
|
tags:
|
||||||
|
- dev_tools
|
||||||
|
|
||||||
- name: Set fish as default shell
|
- name: Set fish as default shell
|
||||||
become: true
|
become: true
|
||||||
|
|
Loading…
Reference in a new issue