Skip to content

Commit

Permalink
Version 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
netromdk committed Jun 17, 2023
1 parent 528a330 commit 5824cc0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down

0 comments on commit 5824cc0

Please sign in to comment.