No description
| check-python-pkgs | ||
| Makefile | ||
| README.md | ||
check-python-pkgs - Check Python virtual environments for out-of-date packages.
Example:
The /usr/local/opt directory contains a few Python virtual environments:
$ ls -1 /usr/local/opt/*/pyvenv.cfg
/usr/local/opt/ansible/pyvenv.cfg
/usr/local/opt/borgmatic/pyvenv.cfg
This utility finds those that have out-of-date packages:
$ check-python-pkgs /usr/local/opt/*
*** /usr/local/opt/borgmatic ***
The following packages are out of date:
Package Version Latest Type
------- ------- ------ -----
idna 3.10 3.11 wheel
msgpack 1.1.0 1.1.2 wheel
To update, run:
cd /usr/local/opt/borgmatic
bin/pip install --upgrade --dry-run idna
bin/pip install --upgrade --dry-run msgpack