Skip to content

Commit db02e9e

Browse files
committed
Version 1.6.0
1 parent 6551ff5 commit db02e9e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ vanilla Python, and it doesn't have any external dependencies, it can be run wit
3434
includes detection of v2.x functionality.
3535

3636
It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and
37-
matches against internal dictionaries with **3676** rules, covering v2.0-2.7 and v3.0-3.11, divided
38-
into **178** modules, **2510** classes/functions/constants members of modules, **859** kwargs of
37+
matches against internal dictionaries with **3796** rules, covering v2.0-2.7 and v3.0-3.12, divided
38+
into **178** modules, **2614** classes/functions/constants members of modules, **875** kwargs of
3939
functions, **4** strftime directives, **3** bytes format directives, **2** array typecodes, **3**
4040
codecs error handler names, **20** codecs encodings, **78** builtin generic annotation types, **9**
4141
builtin dict union (``|``) types, **8** builtin dict union merge (``|=``) types, and **2** user
@@ -44,7 +44,7 @@ function decorators.
4444
Backports of the standard library, like ``typing``, can be enabled for better results. Get full list
4545
of backports via ``--help``.
4646

47-
The project is fairly well-tested with **3881** unit and integration tests that are executed on
47+
The project is fairly well-tested with **4008** unit and integration tests that are executed on
4848
Linux, macOS, and Windows.
4949

5050
It is recommended to use the most recent Python version to run Vermin on projects since Python's own

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="vermin",
16-
version="1.5.2",
16+
version="1.6.0",
1717

1818
description="Concurrently detect the minimum Python versions needed to run code",
1919
long_description=long_description,

vermin/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from multiprocessing import cpu_count
22

3-
VERSION = "1.5.2"
3+
VERSION = "1.6.0"
44
DEFAULT_PROCESSES = cpu_count()
55
CONFIG_FILE_NAMES = ["vermin.ini", "vermin.conf", ".vermin", "setup.cfg"]
66
CONFIG_SECTION = "vermin"

0 commit comments

Comments
 (0)