Skip to content

Commit

Permalink
Version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
netromdk committed Nov 25, 2023
1 parent 6551ff5 commit db02e9e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion vermin/constants.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit db02e9e

Please sign in to comment.