--- a/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/__init__.py Sun Jun 17 16:56:10 2018 +0200 +++ b/Plugins/CheckerPlugins/SyntaxChecker/pyflakes/__init__.py Sun Jun 17 18:22:57 2018 +0200 @@ -31,7 +31,21 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +__version__ = '2.0.0+' + """ Changes +2.0.0 (2018-05-20) + - Drop support for EOL Python <2.7 and 3.2-3.3 + - Check for unused exception binding in `except:` block + - Handle string literal type annotations + - Ignore redefinitions of `_`, unless originally defined by import + - Support `__class__` without `self` in Python 3 + - Issue an error for `raise NotImplemented(...)` + +1.6.0 (2017-08-03) + - Process function scope variable annotations for used names + - Find Python files without extensions by their shebang + 1.5.0 (2017-01-09) - Enable support for PEP 526 annotated assignments @@ -209,7 +223,5 @@ - Improve reporting of unbound locals """ -__version__ = '1.2.3+' - # # eflag: noqa = M702