From db02e9e95a3f89da1788e268ef3fb506187f35db Mon Sep 17 00:00:00 2001 From: Morten Kristensen Date: Sat, 25 Nov 2023 21:20:12 +0100 Subject: [PATCH] Version 1.6.0 --- README.rst | 6 +++--- setup.py | 2 +- vermin/constants.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 2c438d11..6db2c1f9 100644 --- a/README.rst +++ b/README.rst @@ -34,8 +34,8 @@ vanilla Python, and it doesn't have any external dependencies, it can be run wit includes detection of v2.x functionality. It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and -matches against internal dictionaries with **3676** rules, covering v2.0-2.7 and v3.0-3.11, divided -into **178** modules, **2510** classes/functions/constants members of modules, **859** kwargs of +matches against internal dictionaries with **3796** rules, covering v2.0-2.7 and v3.0-3.12, divided +into **178** modules, **2614** classes/functions/constants members of modules, **875** kwargs of functions, **4** strftime directives, **3** bytes format directives, **2** array typecodes, **3** codecs error handler names, **20** codecs encodings, **78** builtin generic annotation types, **9** builtin dict union (``|``) types, **8** builtin dict union merge (``|=``) types, and **2** user @@ -44,7 +44,7 @@ function decorators. Backports of the standard library, like ``typing``, can be enabled for better results. Get full list of backports via ``--help``. -The project is fairly well-tested with **3881** unit and integration tests that are executed on +The project is fairly well-tested with **4008** unit and integration tests that are executed on Linux, macOS, and Windows. It is recommended to use the most recent Python version to run Vermin on projects since Python's own diff --git a/setup.py b/setup.py index 751d8b05..94db4870 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="vermin", - version="1.5.2", + version="1.6.0", description="Concurrently detect the minimum Python versions needed to run code", long_description=long_description, diff --git a/vermin/constants.py b/vermin/constants.py index 59a71e13..c9e607b9 100644 --- a/vermin/constants.py +++ b/vermin/constants.py @@ -1,6 +1,6 @@ from multiprocessing import cpu_count -VERSION = "1.5.2" +VERSION = "1.6.0" DEFAULT_PROCESSES = cpu_count() CONFIG_FILE_NAMES = ["vermin.ini", "vermin.conf", ".vermin", "setup.cfg"] CONFIG_SECTION = "vermin"