# HG changeset patch # User Marcin Kuzminski # Date 2011-12-18 22:12:50 # Node ID f551007ce0857f004f4fd94cd552b1311d0e2769 # Parent 17caf4efe15c86efc6f7b36e266bcefcb1e31a84 bumped up beaker version code garden diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py --- a/rhodecode/__init__.py +++ b/rhodecode/__init__.py @@ -27,7 +27,7 @@ import platform VERSION = (1, 3, 0, 'beta') __version__ = '.'.join((str(each) for each in VERSION[:4])) -__dbversion__ = 4 #defines current db version for migrations +__dbversion__ = 4 # defines current db version for migrations __platform__ = platform.system() __license__ = 'GPLv3' @@ -38,7 +38,7 @@ try: from rhodecode.lib import get_current_revision _rev = get_current_revision() except ImportError: - #this is needed when doing some setup.py operations + # this is needed when doing some setup.py operations _rev = False if len(VERSION) > 3 and _rev: @@ -59,5 +59,3 @@ CELERY_ON = False # link to config for pylons CONFIG = None - - diff --git a/rhodecode/websetup.py b/rhodecode/websetup.py --- a/rhodecode/websetup.py +++ b/rhodecode/websetup.py @@ -23,7 +23,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -import os import logging from rhodecode.config.environment import load_environment diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ if py_version < (2, 5): requirements = [ "Pylons==1.0.0", - "Beaker==1.6.1", + "Beaker==1.6.2", "WebHelpers>=1.2", "formencode==1.2.4", "SQLAlchemy==0.7.3",