Skip to content

Commit

Permalink
Version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
netromdk committed Oct 24, 2021
1 parent a827259 commit b6a7942
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ Concurrently detect the minimum Python versions needed to run code. Additionally
vanilla Python, and it doesn't have any external dependencies, it works with v2.7+ and v3+.

It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and
matches against internal dictionaries with **3357** rules, covering v2.0-2.7 and v3.0-3.10, divided
into **143** modules, **2329** classes/functions/constants members of modules, **761** kwargs of
matches against internal dictionaries with **3427** rules, covering v2.0-2.7 and v3.0-3.10, divided
into **144** modules, **2356** classes/functions/constants members of modules, **801** kwargs of
functions, **4** strftime directives, **3** bytes format directives, **2** array typecodes, **3**
codecs error handler names, **20** codecs encodings, **75** builtin generic annotation types, **8**
builtin dict union (``|``) types, **7** builtin dict union merge (``|=``) types, and **2** user
codecs error handler names, **20** codecs encodings, **75** builtin generic annotation types, **9**
builtin dict union (``|``) types, **8** builtin dict union merge (``|=``) types, and **2** user
function decorators.

Backports of the standard library, like ``typing``, can be enabled for better results.

The project is fairly well-tested with **3680** unit and integration tests that are executed on
The project is fairly well-tested with **3748** 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.3.0",
version="1.3.1",

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.3.0"
VERSION = "1.3.1"
DEFAULT_PROCESSES = cpu_count()
CONFIG_FILE_NAMES = ["vermin.ini", "vermin.conf", ".vermin", "setup.cfg"]
CONFIG_SECTION = "vermin"
Expand Down

0 comments on commit b6a7942

Please sign in to comment.