Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions registry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3419,9 +3419,9 @@ backends = ["asdf:mise-plugins/mise-pipelight"]
description = "Tiny automation pipelines. Bring CI/CD to the smallest projects. Self-hosted, Lightweight, CLI only"

[tools.pipenv]
backends = ["asdf:mise-plugins/mise-pipenv"]
depends = ["python"]
backends = ["pipx:pipenv"]
description = "Python Development Workflow for Humans"
test = ["pipenv --version", "pipenv, version {{version}}"]
Copy link

Copilot AI Dec 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The second test string contains a comma instead of a double dash. It should be pipenv --version {{version}} to properly verify the installed version matches the expected version.

Suggested change
test = ["pipenv --version", "pipenv, version {{version}}"]
test = ["pipenv --version", "pipenv --version {{version}}"]

Copilot uses AI. Check for mistakes.

[tools.pipx]
backends = ["aqua:pypa/pipx", "asdf:mise-plugins/mise-pipx"]
Expand Down
Loading