From 5824cc0036fd71946e2cfff1ba65ceddbeae5f56 Mon Sep 17 00:00:00 2001 From: Morten Kristensen Date: Sat, 17 Jun 2023 09:28:15 +0200 Subject: [PATCH] Version 1.5.2 --- 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 48de36ac..830c3f21 100644 --- a/README.rst +++ b/README.rst @@ -37,8 +37,8 @@ vanilla Python, and it doesn't have any external dependencies, it works with v2. required but detection of 2.x functionality will remain functional. It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and -matches against internal dictionaries with **3556** rules, covering v2.0-2.7 and v3.0-3.11, divided -into **147** modules, **2442** classes/functions/constants members of modules, **838** kwargs of +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 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 @@ -47,7 +47,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 **3739** unit and integration tests that are executed on +The project is fairly well-tested with **3881** 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 015cbe15..a244e641 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="vermin", - version="1.5.1", + version="1.5.2", 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 35c71b2e..16b4c6e4 100644 --- a/vermin/constants.py +++ b/vermin/constants.py @@ -1,6 +1,6 @@ from multiprocessing import cpu_count -VERSION = "1.5.1" +VERSION = "1.5.2" DEFAULT_PROCESSES = cpu_count() CONFIG_FILE_NAMES = ["vermin.ini", "vermin.conf", ".vermin", "setup.cfg"] CONFIG_SECTION = "vermin"