pip-upgrade

Crates.iopip-upgrade
lib.rspip-upgrade
version0.3.0
sourcesrc
created_at2023-02-25 11:32:05.705755
updated_at2024-05-31 18:29:06.441894
descriptionTiny cli utility to update all your installed Python packages
homepagehttps://github.com/Araxeus/pip-upgrade
repositoryhttps://github.com/Araxeus/pip-upgrade
max_upload_size
id794291
size305,893
(Araxeus)

documentation

README

pip-upgrade

Made in Rust 🦀

This tool is designed to help you upgrade your globally installed Python packages

Installation

cargo install pip-upgrade

Available Commands

pip-upgrade

This command will upgrade all of your installed Python packages to the latest version.

upgrade.gif

pip-upgrade --outdated

This command will show you if any of your installed Python packages are out of date.

alias: pip-upgrade -o or pip-upgrade o or pip-upgrade outdated

outdated.gif

How it works

To get outdated packages, it will parse pip list --outdated --format=json

Then if upgrading, it will run pip install --upgrade <package>.

Commit count: 23

cargo fmt