From 9fe82d7be00d28d1005174f8833cc542af8d9e90 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Tue, 21 Jun 2016 07:37:08 -0500 Subject: [PATCH] Update version string to beta Add a version info tuple for plugins to use --- flake8/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake8/__init__.py b/flake8/__init__.py index 40336ad..d6c6915 100644 --- a/flake8/__init__.py +++ b/flake8/__init__.py @@ -27,7 +27,8 @@ LOG.addHandler(NullHandler()) # Clean up after LOG config del NullHandler -__version__ = '3.0.0a1' +__version__ = '3.0.0b1' +__version_info__ = tuple(int(i) for i in __version__.split('.') if i.isdigit()) # There is nothing lower than logging.DEBUG (10) in the logging library,