From 64df1d79c7a6177934804abde4cb8fb24efc3066 Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Mon, 16 Jan 2012 10:36:58 +0100 Subject: [PATCH] version bump --- rosetta/__init__.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/rosetta/__init__.py b/rosetta/__init__.py index 642141a..c8483f0 100644 --- a/rosetta/__init__.py +++ b/rosetta/__init__.py @@ -1,13 +1,7 @@ -VERSION = (0, 6, 3) +VERSION = (0, 6, 4) def get_version(svn=False, limit=3): "Returns the version as a human-format string." - v = '.'.join([str(i) for i in VERSION[:limit]]) - if svn and limit >= 3: - from django.utils.version import get_svn_revision - import os - svn_rev = get_svn_revision(os.path.dirname(__file__)) - if svn_rev: - v = '%s.%s' % (v, svn_rev) - return v + return '.'.join([str(i) for i in VERSION[:limit]]) +