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
3 changes: 2 additions & 1 deletion registry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,9 @@ description = "A vault for securely storing and accessing AWS credentials in dev
test = ["aws-vault --version 2>&1", "v{{version}}"]

[tools.awscli-local]
backends = ["asdf:mise-plugins/mise-awscli-local"]
backends = ["pipx:awscli-local"]
description = "This package provides the awslocal command, which is a thin wrapper around the aws command line interface for use with LocalStack"
test = ["awslocal --version", "aws-cli/"]
Copy link

Choose a reason for hiding this comment

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

Bug: Missing awscli dependency for awscli-local pipx install

The awscli-local package lists awscli as an optional dependency on PyPI, not a required one. When installed via pipx:awscli-local, only localstack-client is installed. Since awslocal is a thin wrapper that delegates to the aws CLI, the command won't work if AWS CLI isn't separately available. The test awslocal --version expects output containing aws-cli/ which comes from the underlying AWS CLI. This could cause the tool to be non-functional after installation.

Fix in Cursor Fix in Web


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