diff mbox

[Branch,~linaro-validation/lava-dashboard/trunk] Rev 230: Update dependencies

Message ID 20110623183717.21265.75342.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Zygmunt Krynicki June 23, 2011, 6:37 p.m. UTC
------------------------------------------------------------
revno: 230
committer: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
branch nick: trunk
timestamp: Thu 2011-06-23 20:36:03 +0200
message:
  Update dependencies
modified:
  setup.py


--
lp:lava-dashboard
https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk

You are subscribed to branch lp:lava-dashboard.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dashboard/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'setup.py'
--- setup.py	2011-06-23 10:09:42 +0000
+++ setup.py	2011-06-23 18:36:03 +0000
@@ -1,5 +1,4 @@ 
 #!/usr/bin/env python
-#
 # Copyright (C) 2010 Linaro Limited
 #
 # Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
@@ -7,7 +6,7 @@ 
 # This file is part of Launch Control.
 #
 # Launch Control is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
+# it under the terms of the GNU Affero General Public License version 3
 # as published by the Free Software Foundation
 #
 # Launch Control is distributed in the hope that it will be useful,
@@ -15,7 +14,7 @@ 
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
-# You should have received a copy of the GNU Lesser General Public License
+# You should have received a copy of the GNU Affero General Public License
 # along with Launch Control.  If not, see <http://www.gnu.org/licenses/>.
 
 from setuptools import setup, find_packages
@@ -33,7 +32,7 @@ 
     Validation Dashboard is a repository for test results.
     """,
     url='https://launchpad.net/lava-dashboard',
-    #test_suite='launch_control.tests.test_suite',
+    #test_suite='dashboard_app.tests.test_suite',
     entry_points="""
         [lava_server.extensions]
         dashboard=dashboard_app.extension:DashboardExtension
@@ -50,21 +49,22 @@ 
     ],
     install_requires=[
         'Django >= 1.2',
-        'linaro-django-pagination >= 2.0',
-        'django-restricted-resource >= 0.2.5',
+        'django-restricted-resource >= 0.2.6',
+        'django-staticfiles == 0.3.4',
         'docutils >= 0.6',
-        'lava-server',
+        'lava-server >= 0.1',
         'linaro-dashboard-bundle >= 1.4',
-        'linaro-json >= 2.0',
+        'linaro-django-pagination >= 2.0.2',
+        'linaro-json >= 2.0.1',  # TODO: use json-schema-validator
         'pygments >= 1.2',
-        'south >= 0.7',
-        'versiontools >= 1.1',
+        'south >= 0.7.3',
+        'versiontools >= 1.3.1',
     ],
     setup_requires=[
         'versiontools >= 1.3.1',
     ],
     tests_require=[
-        'django-testscenarios >= 0.6',
+        'django-testscenarios >= 0.7.1',
         'mocker >= 1.0',
     ],
     zip_safe=False,