Metadata-Version: 2.4
Name: pip-check-updates
Version: 0.29.0
Summary: A tool to upgrade dependencies to the latest versions
Author-email: Zeheng Li <imzehengl@gmail.com>
Maintainer-email: Zeheng Li <imzehengl@gmail.com>
License-Expression: MIT
Project-URL: repository, https://github.com/zehengl/pip-check-updates
Project-URL: homepage, https://zehengl.github.io/pip-check-updates/
Keywords: pip,updates
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: beautifulsoup4
Requires-Dist: packaging
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: rich
Requires-Dist: toml
Requires-Dist: tqdm-loggable
Dynamic: license-file

<div align="center">
    <img src="https://raw.githubusercontent.com/zehengl/pip-check-updates/refs/heads/main/logo.png" alt="logo" height="128">
</div>

# pip-check-updates

[![pytest](https://github.com/zehengl/pip-check-updates/actions/workflows/pytest.yml/badge.svg)](https://github.com/zehengl/pip-check-updates/actions/workflows/pytest.yml)
![coding_style](https://img.shields.io/badge/code%20style-black-000000.svg)
![all-contributors](https://img.shields.io/github/all-contributors/zehengl/pip-check-updates)
![PyPI - License](https://img.shields.io/pypi/l/pip-check-updates)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pip-check-updates)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/pip-check-updates)
[![Downloads](https://static.pepy.tech/badge/pip-check-updates)](https://pepy.tech/project/pip-check-updates)
[![GitHub Pages](https://github.com/zehengl/pip-check-updates/actions/workflows/gh-deploy.yml/badge.svg)](https://github.com/zehengl/pip-check-updates/actions/workflows/gh-deploy.yml)

A tool to upgrade dependencies to the latest versions, inspired by [npm-check-updates](https://www.npmjs.com/package/npm-check-updates)

## Install

From [PyPi](https://pypi.org/project/pip-check-updates/)

    pip install pip-check-updates

From [GitHub](https://github.com/zehengl/pip-check-updates)

    pip install git+https://github.com/zehengl/pip-check-updates.git

## Usage

> Depends on where you install `pip-check-updates`, if Python's scripts folder is not in `path`, the `pcu` entry point would not be available.
> However you can replace `pcu` with `python -m pip-check-updates`.

Show any new dependencies for the project in the current directory:

> Changes are color coded
>
> - Red = major upgrade
> - Cyan = minor upgrade
> - Green = patch upgrade

```terminal
pcu
```

    Checking dependencies
    100%|████████████████████| 6/6 [00:01<00:00,  5.75it/s]

    In requirements.txt

    Django  3.1.13  →  3.2.6
    pandas  0.25.3  →  1.3.2
    tqdm    4.62.0  →  4.62.1

    Run pcu requirements.txt -u to upgrade versions in 1 file

Upgrade a project's requirements file:

```terminal
pcu -u
```

    Upgrading dependencies
    100%|████████████████████| 6/6 [00:01<00:00,  5.84it/s]

    In requirements.txt

    Django  3.1.13  →  3.2.6
    pandas  0.25.3  →  1.3.2
    tqdm    4.62.0  →  4.62.1

    Run pip install -r requirements.txt to install new versions

Specify requirements file if needed, `-r` option will be recognized as well:

```terminal
pcu requirements-dev.txt
```

    Checking dependencies
    100%|████████████████████| 10/10 [00:01<00:00,  6.05it/s]

    In requirements.txt

    Django  3.1.13  →  3.2.6
    pandas  0.25.3  →  1.3.2
    tqdm    4.62.0  →  4.62.1

    In requirements-dev.txt

    black   21.6b0  →  21.7b0
    pylint  2.9.3   →  2.9.6
    pytest  5.4.3   →  6.2.4

    Run pcu requirements-dev.txt -u to upgrade versions in 2 files

Target version:

```terminal
pcu requirements-dev.txt -t patch
```

    Checking dependencies
    100%|████████████████████| 10/10 [00:02<00:00,  4.73it/s]

    In requirements.txt

    tqdm  4.62.0  →  4.62.1

    In requirements-dev.txt

    pylint  2.9.3  →  2.9.6

    Run pcu requirements-dev.txt -u to upgrade versions in 2 files

Filter by a pattern:

```terminal
pcu requirements-dev.txt -f "py*"
```

    Checking dependencies
    100%|████████████████████| 10/10 [00:01<00:00,  6.01it/s]

    In requirements-dev.txt

    pylint  2.9.3  →  2.9.6
    pytest  5.4.3  →  6.2.4

    Run pcu requirements-dev.txt -u to upgrade versions in 1 file

Work with conda-forge (WIP):

```terminal
pcu environment.yml -u
```

Work with Pipenv (WIP):

```terminal
pcu Pipfile
```

Include unstable versions:

```terminal
pcu --pre
```

    Checking dependencies
    100%|████████████████████| 6/6 [00:01<00:00,  5.75it/s]

    In requirements.txt

    Django  3.1.13  →  3.2.6.dev
    pandas  0.25.3  →  1.3.2.32.dev
    tqdm    4.62.0  →  4.62.1.2.dev

    Run pcu requirements.txt -u to upgrade versions in 1 file

Show the helper text:

```terminal
pcu -h
```

    usage: pcu [-h] [-u] [-f FILTER [FILTER ...]] [-t {latest,newest,greatest,major,minor,patch}] [-x] [-i] [--no_ssl_verify] [--no_recursive] [--ignore_warning] [--show_full_path]
               [--no_color] [--ignore_additional_labels] [--init] [--extra EXTRA] [--pre] [--fail_on_update] [--loggable] [-v]
               [path]

    pip-check-updates: A tool to upgrade dependencies to the latest versions, inspired by npm-check-updates.

    positional arguments:
    path                  specify path to a requirements file

    optional arguments:
      -h, --help            show this help message and exit
      -u, --upgrade         overwrite package file with upgraded versions instead of just outputting to console.
      -f FILTER [FILTER ...], --filter FILTER [FILTER ...]
                              include only package names matching the given strings.
      -t {latest,newest,greatest,major,minor,patch}, --target {latest,newest,greatest,major,minor,patch}
                              target version to upgrade to: latest, newest, greatest, major, minor, patch.
      -x, --txt             output new requirements file instead of human-readable message.
      -i, --interactive     enable interactive prompts for each dependency.
      --no_ssl_verify       disable SSL verification.
      --no_recursive        disable recursive checking.
      --ignore_warning      ignore warning.
      --show_full_path      show full path.
      --no_color            disable color.
      --ignore_additional_labels
                            ignore additional labels.
      --init                initialize pcufile.toml.
      --extra EXTRA         extras to consider when parsing TOML files. Not used with Pipfile.
      --pre                 include unstable versions when checking for updates.
      --fail_on_update      exit with code 1 if updates are available.
      --loggable            to be logging friendly.
      -v, --version         show pip-check-updates version

> FYI the equivalent full-name command `pip-check-updates` may be used as well.

## Contributors ✨

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/ghostebony"><img src="https://avatars.githubusercontent.com/u/47510020?v=4?s=100" width="100px;" alt="Pedro Américo"/><br /><sub><b>Pedro Américo</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/issues?q=author%3Aghostebony" title="Bug reports">🐛</a> <a href="https://github.com/zehengl/pip-check-updates/commits?author=ghostebony" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://kodare.net"><img src="https://avatars.githubusercontent.com/u/332428?v=4?s=100" width="100px;" alt="Anders Hovmöller"/><br /><sub><b>Anders Hovmöller</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/issues?q=author%3Aboxed" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://jtiai.github.io/"><img src="https://avatars.githubusercontent.com/u/1370289?v=4?s=100" width="100px;" alt="Jani Tiainen"/><br /><sub><b>Jani Tiainen</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/issues?q=author%3Ajtiai" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://pelsmaeker.net/"><img src="https://avatars.githubusercontent.com/u/647530?v=4?s=100" width="100px;" alt="Daniel A.A. Pelsmaeker"/><br /><sub><b>Daniel A.A. Pelsmaeker</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/issues?q=author%3AVirtlink" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/nikolaik"><img src="https://avatars.githubusercontent.com/u/104154?v=4?s=100" width="100px;" alt="Nikolai Røed Kristiansen"/><br /><sub><b>Nikolai Røed Kristiansen</b></sub></a><br /><a href="#ideas-nikolaik" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/zehengl/pip-check-updates/commits?author=nikolaik" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://itachisan.github.io"><img src="https://avatars.githubusercontent.com/u/1223421?v=4?s=100" width="100px;" alt="Giovanni Santini"/><br /><sub><b>Giovanni Santini</b></sub></a><br /><a href="#ideas-ItachiSan" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/zehengl/pip-check-updates/commits?author=ItachiSan" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://git.coopdevs.org"><img src="https://avatars.githubusercontent.com/u/25091358?v=4?s=100" width="100px;" alt="Pelayo García"/><br /><sub><b>Pelayo García</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/commits?author=oyale" title="Code">💻</a> <a href="#ideas-oyale" title="Ideas, Planning, & Feedback">🤔</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/radusuciu"><img src="https://avatars.githubusercontent.com/u/1108600?v=4?s=100" width="100px;" alt="Radu Suciu"/><br /><sub><b>Radu Suciu</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/issues?q=author%3Aradusuciu" title="Bug reports">🐛</a> <a href="https://github.com/zehengl/pip-check-updates/commits?author=radusuciu" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/atchisson"><img src="https://avatars.githubusercontent.com/u/41149397?v=4?s=100" width="100px;" alt="atchisson"/><br /><sub><b>atchisson</b></sub></a><br /><a href="#ideas-atchisson" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/zehengl/pip-check-updates/commits?author=atchisson" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/purificant"><img src="https://avatars.githubusercontent.com/u/4669013?v=4?s=100" width="100px;" alt="purificant"/><br /><sub><b>purificant</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/commits?author=purificant" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://www.pulse-mind.com"><img src="https://avatars.githubusercontent.com/u/22203083?v=4?s=100" width="100px;" alt="Pulse-Mind"/><br /><sub><b>Pulse-Mind</b></sub></a><br /><a href="#ideas-pulse-mind" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/hzhangxyz"><img src="https://avatars.githubusercontent.com/u/11623447?v=4?s=100" width="100px;" alt="Hao Zhang(张浩)"/><br /><sub><b>Hao Zhang(张浩)</b></sub></a><br /><a href="#ideas-hzhangxyz" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/AhmWael"><img src="https://avatars.githubusercontent.com/u/56698318?v=4?s=100" width="100px;" alt="Ahmad Wael"/><br /><sub><b>Ahmad Wael</b></sub></a><br /><a href="https://github.com/zehengl/pip-check-updates/commits?author=AhmWael" title="Code">💻</a></td>
    </tr>
  </tbody>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
