Skip to content

Commit 0feac05

Browse files
committed
Version 0.4.5
1 parent d253ed3 commit 0feac05

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
@@ -18,7 +18,7 @@ Concurrently detect the minimum Python versions needed to run code. Additionally
1818
vanilla Python, and it doesn't have any external dependencies, it works with v2.7+ and v3+.
1919

2020
It functions by parsing Python code into an abstract syntax tree (AST), which it traverses and
21-
matches against internal dictionaries with 802 rules divided into 116 modules, 540
21+
matches against internal dictionaries with 803 rules divided into 117 modules, 540
2222
classes/functions/constants members of modules, 142 kwargs of functions, and 4 strftime directives.
2323
Including looking for v2/v3 ``print expr`` and ``print(expr)``, ``long``, f-strings, boolean
2424
constants, ``"..".format(..)``, imports (``import X``, ``from X import Y``, ``from X import *``),
@@ -37,7 +37,7 @@ Or via `PyPi <https://pypi.python.org/pypi/vermin/>`__::
3737

3838
% pip install vermin
3939
% vermin /path/to/your/project
40-
40+
4141
When using continuous integration (CI) tools, like `Travis CI <https://travis-ci.org/>`_, Vermin can be used to check that the minimum required versions didn't change. The following is an exerpt::
4242

4343
install:
@@ -52,7 +52,7 @@ Examples
5252
::
5353

5454
% ./vermin.py
55-
Vermin 0.4.4
55+
Vermin 0.4.5
5656
Usage: ./vermin.py [options] <python source files and folders..>
5757

5858
Options:

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="0.4.4",
16+
version="0.4.5",
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 +1 @@
1-
VERSION = "0.4.4"
1+
VERSION = "0.4.5"

0 commit comments

Comments
 (0)