New version checker for software releases
Go to file
2023-05-01 09:59:16 +03:00
.github/workflows github actions: exclude matrix containing an upstream bug 2023-03-26 20:51:19 +08:00
docs port from deprecated appdirs to platformdirs 2023-02-01 17:15:15 +02:00
nvchecker bump version to 2.11 2023-04-06 21:00:56 +08:00
nvchecker_source remove usage of deprecared sre_constants 2023-04-30 14:12:34 +03:00
scripts nvchecker-notify: try Notify 0.8 2022-07-16 15:48:59 +08:00
tests test_cran: bump xml2 version to pass test 2023-05-01 09:59:16 +03:00
.gitignore
.typos.toml
keyfile.toml.enc
LICENSE
mypy.ini port from deprecated appdirs to platformdirs 2023-02-01 17:15:15 +02:00
pyproject.toml add comment about how to build and upload 2022-11-20 13:50:32 +08:00
README.rst port from deprecated appdirs to platformdirs 2023-02-01 17:15:15 +02:00
sample_config.toml
setup.cfg port from deprecated appdirs to platformdirs 2023-02-01 17:15:15 +02:00
tox.ini

**nvchecker** (short for *new version checker*) is for checking if a new version of some software has been released.

This is the version 2.0 branch. For the old version 1.x, please switch to the ``v1.x`` branch.

.. image:: https://github.com/lilydjwg/nvchecker/workflows/run%20tests/badge.svg?branch=master
   :alt: Test Status
   :target: https://github.com/lilydjwg/nvchecker/actions?query=workflow%3A%22run+tests%22
.. image:: https://badge.fury.io/py/nvchecker.svg
   :alt: PyPI version
   :target: https://badge.fury.io/py/nvchecker
.. image:: https://readthedocs.org/projects/nvchecker/badge/?version=latest
   :target: https://nvchecker.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

|

.. image:: https://repology.org/badge/vertical-allrepos/nvchecker.svg
   :alt: Packaging status
   :target: https://repology.org/metapackage/nvchecker/versions

.. contents::
   :local:

Dependency
----------
- Python 3.7+
- Python library: structlog, tomli, platformdirs
- One of these Python library combinations (ordered by preference):

  * tornado + pycurl
  * aiohttp
  * httpx with http2 support (experimental; only latest version is supported)
  * tornado

- All commands used in your software version configuration files

Install and Run
---------------
To install::

  pip3 install nvchecker

To use the latest code, you can also clone this repository and run::

  pip install .

To see available options::

  nvchecker --help

Run with one or more software version files::

  nvchecker -c config_file

You normally will like to specify some "version record files"; see below.

Documentation
-------------

For detailed documentation, see `https://nvchecker.readthedocs.io/en/latest/ <https://nvchecker.readthedocs.io/en/latest/>`_.