From bf427fb312bbec756a711db382e93dde79428616 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 13 Jan 2014 21:34:30 +0100 Subject: [PATCH] use a string instead of a tuple for __version__, this behaviour is defined in a pep somewhere (maybe pep8). fixes #350 --- jedi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/__init__.py b/jedi/__init__.py index 9a41f275..afbb29a6 100644 --- a/jedi/__init__.py +++ b/jedi/__init__.py @@ -34,7 +34,7 @@ As you see Jedi is pretty simple and allows you to concentrate on writing a good text editor, while still having very good IDE features for Python. """ -__version__ = 0, 7, 1, 'alpha1' +__version__ = '0.7.1-alpha1' from jedi.api import Script, Interpreter, NotFoundError, set_debug_function from jedi.api import preload_module, defined_names