Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eight04/pip-outdated
Find outdated dependencies in your requirements.txt or setup.cfg file. Report missing/outdated/incompatible packages with table and colors.
https://github.com/eight04/pip-outdated
cli pip pypi python python3
Last synced: 17 days ago
JSON representation
Find outdated dependencies in your requirements.txt or setup.cfg file. Report missing/outdated/incompatible packages with table and colors.
- Host: GitHub
- URL: https://github.com/eight04/pip-outdated
- Owner: eight04
- Created: 2018-05-12T09:07:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T15:33:09.000Z (3 months ago)
- Last Synced: 2024-10-11T23:33:10.893Z (about 1 month ago)
- Topics: cli, pip, pypi, python, python3
- Language: Python
- Size: 39.1 KB
- Stars: 10
- Watchers: 4
- Forks: 7
- Open Issues: 8
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
pip-outdated
============.. image:: https://travis-ci.com/eight04/pip-outdated.svg?branch=master
:target: https://travis-ci.com/eight04/pip-outdated
.. image:: https://codecov.io/gh/eight04/pip-outdated/branch/master/graph/badge.svg
:target: https://codecov.io/gh/eight04/pip-outdatedFind outdated dependencies in your requirements.txt or setup.cfg file. Report missing/outdated/incompatible packages with table and colors.
This tool compares the version number with the version specifier in ``requirements.txt`` or ``setup.cfg``. If you just want to list all updatable package, simply use ``pip list --outdated`` command.
Installation
------------From `pypi `__
::
pip install pip-outdated
Usage
-----::
usage: pip-outdated [-h] [-v] [-q] [ [ ...]]
Find outdated dependencies in your requirements.txt or setup.cfg file.
positional arguments:
Read dependencies from requirements files. This option
accepts glob pattern. (default: ['requirements.txt',
'setup.cfg'])optional arguments:
-h, --help show this help message and exit
-v, --verbose Print verbose information. (default: False)
-q, --quiet Don't return exit code 1 if not everything is up to date.
(default: False)
Check multiple files e.g. ``test-requirements.txt`` and ``dev-requirements.txt``::pip-outdated *-requirements.txt
Check files under ``requirements`` folder::pip-outdated requirements/*.txt
Todos
-----* Add options to update the package?
* Add options to update the requirements.txt/setup.cfg file?
* Add options to list all packages? (e.g. ``-g, --global``)Changelog
---------* 0.7.0 (Aug 13, 2024)
- Change: ignore ``InvalidVersion`` error.
* 0.6.0 (Jan 1, 2023)
- Bump dependencies.
- Drop cchardet.
- Change: fetch package version from ``pip`` CLI, so we can get package version in venv.* 0.5.0 (Jan 12, 2022)
- Bump dependencies.
- Add: typehint.* 0.4.0 (Jan 30, 2020)
- **Breaking: bump Python to 3.7**
- Add: request in parallel.
- Add: ``--quiet`` option.* 0.3.0 (Oct 13, 2019)
- **Breaking: set exit code to 1 if not all good.**
- Fix: don't check prereleases.
- Add: check ``setup_requires`` and ``extras_require`` in cfg files.* 0.2.0 (Feb 10, 2019)
- Bump dependencies:
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]* 0.1.0 (May 12, 2018)
- First release.