pip-check-updates


Namepip-check-updates JSON
Version 0.27.0 PyPI version JSON
download
home_pageNone
SummaryA tool to upgrade dependencies to the latest versions
upload_time2024-04-16 15:43:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords pip updates
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
    <img src="https://cdn2.iconfinder.com/data/icons/flat-jewels-icon-set/512/0000_Refresh.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]
            [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.

## Credits

- [Icon](https://www.iconfinder.com/icons/171269/refresh_icon) by PixelKit

## 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>
    </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!

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pip-check-updates",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Zeheng Li <imzehengl@gmail.com>",
    "keywords": "pip, updates",
    "author": null,
    "author_email": "Zeheng Li <imzehengl@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/47/c0/3d2f6e68c86ba8e38d392f3f6558d017ba46f42f6b28b432f4b2a82e6e6e/pip_check_updates-0.27.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\r\n    <img src=\"https://cdn2.iconfinder.com/data/icons/flat-jewels-icon-set/512/0000_Refresh.png\" alt=\"logo\" height=\"128\">\r\n</div>\r\n\r\n# pip-check-updates\r\n\r\n[![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)\r\n![coding_style](https://img.shields.io/badge/code%20style-black-000000.svg)\r\n![all-contributors](https://img.shields.io/github/all-contributors/zehengl/pip-check-updates)\r\n![PyPI - License](https://img.shields.io/pypi/l/pip-check-updates)\r\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pip-check-updates)\r\n![PyPI - Wheel](https://img.shields.io/pypi/wheel/pip-check-updates)\r\n[![Downloads](https://static.pepy.tech/badge/pip-check-updates)](https://pepy.tech/project/pip-check-updates)\r\n[![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)\r\n\r\nA tool to upgrade dependencies to the latest versions, inspired by [npm-check-updates](https://www.npmjs.com/package/npm-check-updates)\r\n\r\n## Install\r\n\r\nFrom [PyPi](https://pypi.org/project/pip-check-updates/)\r\n\r\n    pip install pip-check-updates\r\n\r\nFrom [GitHub](https://github.com/zehengl/pip-check-updates)\r\n\r\n    pip install git+https://github.com/zehengl/pip-check-updates.git\r\n\r\n## Usage\r\n\r\n> 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.\r\n> However you can replace `pcu` with `python -m pip-check-updates`.\r\n\r\nShow any new dependencies for the project in the current directory:\r\n\r\n> Changes are color coded\r\n>\r\n> - Red = major upgrade\r\n> - Cyan = minor upgrade\r\n> - Green = patch upgrade\r\n\r\n```terminal\r\npcu\r\n```\r\n\r\n    Checking dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 6/6 [00:01<00:00,  5.75it/s]\r\n\r\n    In requirements.txt\r\n\r\n    Django  3.1.13  \u2192  3.2.6\r\n    pandas  0.25.3  \u2192  1.3.2\r\n    tqdm    4.62.0  \u2192  4.62.1\r\n\r\n    Run pcu requirements.txt -u to upgrade versions in 1 file\r\n\r\nUpgrade a project's requirements file:\r\n\r\n```terminal\r\npcu -u\r\n```\r\n\r\n    Upgrading dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 6/6 [00:01<00:00,  5.84it/s]\r\n\r\n    In requirements.txt\r\n\r\n    Django  3.1.13  \u2192  3.2.6\r\n    pandas  0.25.3  \u2192  1.3.2\r\n    tqdm    4.62.0  \u2192  4.62.1\r\n\r\n    Run pip install -r requirements.txt to install new versions\r\n\r\nSpecify requirements file if needed, `-r` option will be recognized as well:\r\n\r\n```terminal\r\npcu requirements-dev.txt\r\n```\r\n\r\n    Checking dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10/10 [00:01<00:00,  6.05it/s]\r\n\r\n    In requirements.txt\r\n\r\n    Django  3.1.13  \u2192  3.2.6\r\n    pandas  0.25.3  \u2192  1.3.2\r\n    tqdm    4.62.0  \u2192  4.62.1\r\n\r\n    In requirements-dev.txt\r\n\r\n    black   21.6b0  \u2192  21.7b0\r\n    pylint  2.9.3   \u2192  2.9.6\r\n    pytest  5.4.3   \u2192  6.2.4\r\n\r\n    Run pcu requirements-dev.txt -u to upgrade versions in 2 files\r\n\r\nTarget version:\r\n\r\n```terminal\r\npcu requirements-dev.txt -t patch\r\n```\r\n\r\n    Checking dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10/10 [00:02<00:00,  4.73it/s]\r\n\r\n    In requirements.txt\r\n\r\n    tqdm  4.62.0  \u2192  4.62.1\r\n\r\n    In requirements-dev.txt\r\n\r\n    pylint  2.9.3  \u2192  2.9.6\r\n\r\n    Run pcu requirements-dev.txt -u to upgrade versions in 2 files\r\n\r\nFilter by a pattern:\r\n\r\n```terminal\r\npcu requirements-dev.txt -f \"py*\"\r\n```\r\n\r\n    Checking dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 10/10 [00:01<00:00,  6.01it/s]\r\n\r\n    In requirements-dev.txt\r\n\r\n    pylint  2.9.3  \u2192  2.9.6\r\n    pytest  5.4.3  \u2192  6.2.4\r\n\r\n    Run pcu requirements-dev.txt -u to upgrade versions in 1 file\r\n\r\nWork with conda-forge (WIP):\r\n\r\n```terminal\r\npcu environment.yml -u\r\n```\r\n\r\nWork with Pipenv (WIP):\r\n\r\n```terminal\r\npcu Pipfile\r\n```\r\n\r\nInclude unstable versions:\r\n\r\n```terminal\r\npcu --pre\r\n```\r\n\r\n    Checking dependencies\r\n    100%|\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 6/6 [00:01<00:00,  5.75it/s]\r\n\r\n    In requirements.txt\r\n\r\n    Django  3.1.13  \u2192  3.2.6.dev\r\n    pandas  0.25.3  \u2192  1.3.2.32.dev\r\n    tqdm    4.62.0  \u2192  4.62.1.2.dev\r\n\r\n    Run pcu requirements.txt -u to upgrade versions in 1 file\r\n\r\nShow the helper text:\r\n\r\n```terminal\r\npcu -h\r\n```\r\n\r\n    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]\r\n            [--no_color] [--ignore_additional_labels] [--init] [--extra EXTRA] [--pre] [--fail_on_update] [--loggable]\r\n            [path]\r\n\r\n    pip-check-updates: A tool to upgrade dependencies to the latest versions, inspired by npm-check-updates.\r\n\r\n    positional arguments:\r\n    path                  specify path to a requirements file\r\n\r\n    optional arguments:\r\n    -h, --help            show this help message and exit\r\n    -u, --upgrade         overwrite package file with upgraded versions instead of just outputting to console.\r\n    -f FILTER [FILTER ...], --filter FILTER [FILTER ...]\r\n                            include only package names matching the given strings.\r\n    -t {latest,newest,greatest,major,minor,patch}, --target {latest,newest,greatest,major,minor,patch}\r\n                            target version to upgrade to: latest, newest, greatest, major, minor, patch.\r\n    -x, --txt             output new requirements file instead of human-readable message.\r\n    -i, --interactive     enable interactive prompts for each dependency.\r\n    --no_ssl_verify       disable SSL verification.\r\n    --no_recursive        disable recursive checking.\r\n    --ignore_warning      ignore warning.\r\n    --show_full_path      show full path.\r\n    --no_color            disable color.\r\n    --ignore_additional_labels\r\n                          ignore additional labels.\r\n    --init                initialize pcufile.toml.\r\n    --extra EXTRA         extras to consider when parsing TOML files. Not used with Pipfile.\r\n    --pre                 include unstable versions when checking for updates.\r\n    --fail_on_update      exit with code 1 if updates are available.\r\n    --loggable            to be logging friendly.\r\n\r\n## Credits\r\n\r\n- [Icon](https://www.iconfinder.com/icons/171269/refresh_icon) by PixelKit\r\n\r\n## Contributors \u2728\r\n\r\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\r\n\r\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\r\n<!-- prettier-ignore-start -->\r\n<!-- markdownlint-disable -->\r\n<table>\r\n  <tbody>\r\n    <tr>\r\n      <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\u00e9rico\"/><br /><sub><b>Pedro Am\u00e9rico</b></sub></a><br /><a href=\"https://github.com/zehengl/pip-check-updates/issues?q=author%3Aghostebony\" title=\"Bug reports\">\ud83d\udc1b</a> <a href=\"https://github.com/zehengl/pip-check-updates/commits?author=ghostebony\" title=\"Code\">\ud83d\udcbb</a></td>\r\n      <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\u00f6ller\"/><br /><sub><b>Anders Hovm\u00f6ller</b></sub></a><br /><a href=\"https://github.com/zehengl/pip-check-updates/issues?q=author%3Aboxed\" title=\"Bug reports\">\ud83d\udc1b</a></td>\r\n      <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\">\ud83d\udc1b</a></td>\r\n      <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\">\ud83d\udc1b</a></td>\r\n      <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\u00f8ed Kristiansen\"/><br /><sub><b>Nikolai R\u00f8ed Kristiansen</b></sub></a><br /><a href=\"#ideas-nikolaik\" title=\"Ideas, Planning, & Feedback\">\ud83e\udd14</a> <a href=\"https://github.com/zehengl/pip-check-updates/commits?author=nikolaik\" title=\"Code\">\ud83d\udcbb</a></td>\r\n      <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\">\ud83e\udd14</a> <a href=\"https://github.com/zehengl/pip-check-updates/commits?author=ItachiSan\" title=\"Code\">\ud83d\udcbb</a></td>\r\n      <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\u00eda\"/><br /><sub><b>Pelayo Garc\u00eda</b></sub></a><br /><a href=\"https://github.com/zehengl/pip-check-updates/commits?author=oyale\" title=\"Code\">\ud83d\udcbb</a> <a href=\"#ideas-oyale\" title=\"Ideas, Planning, & Feedback\">\ud83e\udd14</a></td>\r\n    </tr>\r\n    <tr>\r\n      <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\">\ud83d\udc1b</a> <a href=\"https://github.com/zehengl/pip-check-updates/commits?author=radusuciu\" title=\"Code\">\ud83d\udcbb</a></td>\r\n      <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\">\ud83e\udd14</a> <a href=\"https://github.com/zehengl/pip-check-updates/commits?author=atchisson\" title=\"Code\">\ud83d\udcbb</a></td>\r\n      <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\">\ud83d\udcbb</a></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n\r\n<!-- markdownlint-restore -->\r\n<!-- prettier-ignore-end -->\r\n\r\n<!-- ALL-CONTRIBUTORS-LIST:END -->\r\n\r\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A tool to upgrade dependencies to the latest versions",
    "version": "0.27.0",
    "project_urls": {
        "homepage": "https://zehengl.github.io/pip-check-updates/",
        "repository": "https://github.com/zehengl/pip-check-updates"
    },
    "split_keywords": [
        "pip",
        " updates"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66784bff99f036bc4e32b7942443fb88d773eaae642167bd62fef3c58572e094",
                "md5": "f752f2d3889a7a44b78ee22dd89ec3c9",
                "sha256": "c930d6cd4336a1e985e83a759ce33ead3d530e8d4af1404bac03b954d0bafdaa"
            },
            "downloads": -1,
            "filename": "pip_check_updates-0.27.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "f752f2d3889a7a44b78ee22dd89ec3c9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 14246,
            "upload_time": "2024-04-16T15:43:30",
            "upload_time_iso_8601": "2024-04-16T15:43:30.907012Z",
            "url": "https://files.pythonhosted.org/packages/66/78/4bff99f036bc4e32b7942443fb88d773eaae642167bd62fef3c58572e094/pip_check_updates-0.27.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47c03d2f6e68c86ba8e38d392f3f6558d017ba46f42f6b28b432f4b2a82e6e6e",
                "md5": "63750502861e557aa02b797e0a72e285",
                "sha256": "0c69cc33ce12c22d433c1f2e9deb97123ec8ad9c5214872eb7bba252ccbfbb1a"
            },
            "downloads": -1,
            "filename": "pip_check_updates-0.27.0.tar.gz",
            "has_sig": false,
            "md5_digest": "63750502861e557aa02b797e0a72e285",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 30532,
            "upload_time": "2024-04-16T15:43:32",
            "upload_time_iso_8601": "2024-04-16T15:43:32.715830Z",
            "url": "https://files.pythonhosted.org/packages/47/c0/3d2f6e68c86ba8e38d392f3f6558d017ba46f42f6b28b432f4b2a82e6e6e/pip_check_updates-0.27.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-16 15:43:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zehengl",
    "github_project": "pip-check-updates",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pip-check-updates"
}
        
Elapsed time: 0.27782s