aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/__init__.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-05-15 23:07:59 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-05-15 23:07:59 +0200
commite611b88d4ca431a395a9bfb916326c384cb16fef (patch)
tree9684fe16676c37a61954464532387059fa4e9956 /rhodecode/__init__.py
parentaee59e03b00e80b9765e65e0e916fc0d408721f1 (diff)
small issue fixes
Diffstat (limited to 'rhodecode/__init__.py')
-rw-r--r--rhodecode/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index 09b5e5d4..b72827c9 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -26,11 +26,11 @@
import sys
import platform
-VERSION = (1, 3, 5)
+VERSION = (1, 3, 6)
try:
from rhodecode.lib import get_current_revision
- _rev = get_current_revision()
+ _rev = get_current_revision(quite=True)
if _rev and len(VERSION) > 3:
VERSION += ('dev%s' % _rev[0],)
except ImportError:
@@ -65,10 +65,10 @@ requirements = [
"webob==1.0.8",
"markdown==2.1.1",
"docutils==0.8.1",
+ "simplejson==2.5.2",
]
if __py_version__ < (2, 6):
- requirements.append("simplejson")
requirements.append("pysqlite")
if is_windows: