##// END OF EJS Templates
bumped up beaker version...
marcink -
r1790:f551007c beta
parent child Browse files
Show More
@@ -27,7 +27,7 b' import platform'
27
27
28 VERSION = (1, 3, 0, 'beta')
28 VERSION = (1, 3, 0, 'beta')
29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
30 __dbversion__ = 4 #defines current db version for migrations
30 __dbversion__ = 4 # defines current db version for migrations
31 __platform__ = platform.system()
31 __platform__ = platform.system()
32 __license__ = 'GPLv3'
32 __license__ = 'GPLv3'
33
33
@@ -38,7 +38,7 b' try:'
38 from rhodecode.lib import get_current_revision
38 from rhodecode.lib import get_current_revision
39 _rev = get_current_revision()
39 _rev = get_current_revision()
40 except ImportError:
40 except ImportError:
41 #this is needed when doing some setup.py operations
41 # this is needed when doing some setup.py operations
42 _rev = False
42 _rev = False
43
43
44 if len(VERSION) > 3 and _rev:
44 if len(VERSION) > 3 and _rev:
@@ -59,5 +59,3 b' CELERY_ON = False'
59
59
60 # link to config for pylons
60 # link to config for pylons
61 CONFIG = None
61 CONFIG = None
62
63
@@ -23,7 +23,6 b''
23 # You should have received a copy of the GNU General Public License
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25
25
26 import os
27 import logging
26 import logging
28
27
29 from rhodecode.config.environment import load_environment
28 from rhodecode.config.environment import load_environment
@@ -11,7 +11,7 b' if py_version < (2, 5):'
11
11
12 requirements = [
12 requirements = [
13 "Pylons==1.0.0",
13 "Pylons==1.0.0",
14 "Beaker==1.6.1",
14 "Beaker==1.6.2",
15 "WebHelpers>=1.2",
15 "WebHelpers>=1.2",
16 "formencode==1.2.4",
16 "formencode==1.2.4",
17 "SQLAlchemy==0.7.3",
17 "SQLAlchemy==0.7.3",
General Comments 0
You need to be logged in to leave comments. Login now