Merge branch 'master' into uv-plugin-update

This commit is contained in:
Marc Cornellà 2025-12-08 13:13:28 +01:00 committed by GitHub
commit 85d47471c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 50 additions and 15 deletions

View file

@ -23,6 +23,7 @@ plugins=(... uv)
| uvp | `uv pip` | Manage pip packages |
| uvpi | `uv python install` | Install a specific version of python |
| uvpl | `uv python list` | Lists all python version installed |
| uvpp | `uv python pin` | Pin the current project to use a specific Python version |
| uvpu | `uv python uninstall` | Remove a specific version of python |
| uvpy | `uv python` | Manage Python installs |
| uvr | `uv run` | Run commands within the project's environment |

View file

@ -17,6 +17,7 @@ alias uvpi='uv python install'
alias uvpl='uv python list'
alias uvpu='uv python uninstall'
alias uvpy='uv python'
alias uvpp='uv python pin'
alias uvr='uv run'
alias uvrm='uv remove'
alias uvs='uv sync'