From patchwork Thu Jun 23 18:37:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2285 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id D5ACD23F6D for ; Thu, 23 Jun 2011 18:37:21 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 8EF26A18644 for ; Thu, 23 Jun 2011 18:37:21 +0000 (UTC) Received: by qyk10 with SMTP id 10so4001429qyk.11 for ; Thu, 23 Jun 2011 11:37:21 -0700 (PDT) Received: by 10.229.30.3 with SMTP id s3mr706551qcc.21.1308854241011; Thu, 23 Jun 2011 11:37:21 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.230.139 with SMTP id jm11cs27386qcb; Thu, 23 Jun 2011 11:37:20 -0700 (PDT) Received: by 10.227.28.200 with SMTP id n8mr2226169wbc.97.1308854239059; Thu, 23 Jun 2011 11:37:19 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id ep1si4391505wbb.109.2011.06.23.11.37.18; Thu, 23 Jun 2011 11:37:19 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QZomE-0008J4-08 for ; Thu, 23 Jun 2011 18:37:18 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id CC0C22E8954 for ; Thu, 23 Jun 2011 18:37:17 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dashboard X-Launchpad-Branch: ~linaro-validation/lava-dashboard/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 230 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dashboard/trunk] Rev 230: Update dependencies Message-Id: <20110623183717.21265.75342.launchpad@loganberry.canonical.com> Date: Thu, 23 Jun 2011 18:37:17 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13265"; Instance="initZopeless config overlay" X-Launchpad-Hash: fb3f7b783160373006bce5dd1d4d197f6a8a851d ------------------------------------------------------------ revno: 230 committer: Zygmunt Krynicki 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 === 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 @@ -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 . 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,