From patchwork Wed Jul 27 10:27: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: 3172 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 827BF23F3F for ; Wed, 27 Jul 2011 10:27: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 5274BA18125 for ; Wed, 27 Jul 2011 10:27:21 +0000 (UTC) Received: by qyk10 with SMTP id 10so2498586qyk.11 for ; Wed, 27 Jul 2011 03:27:20 -0700 (PDT) Received: by 10.229.44.19 with SMTP id y19mr5712402qce.190.1311762440830; Wed, 27 Jul 2011 03:27:20 -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.217.78 with SMTP id hl14cs140657qcb; Wed, 27 Jul 2011 03:27:20 -0700 (PDT) Received: by 10.216.235.207 with SMTP id u57mr6048035weq.42.1311762438596; Wed, 27 Jul 2011 03:27:18 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id s17si600472wec.52.2011.07.27.03.27.18; Wed, 27 Jul 2011 03:27:18 -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 1Qm1Kf-0005jA-U9 for ; Wed, 27 Jul 2011 10:27:17 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id E03A82E8911 for ; Wed, 27 Jul 2011 10:27:17 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 53 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 53: Upgrade dependencies a little Message-Id: <20110727102717.24043.41051.launchpad@loganberry.canonical.com> Date: Wed, 27 Jul 2011 10:27: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="13503"; Instance="initZopeless config overlay" X-Launchpad-Hash: c1210c4c6a0cb01413714d5e63f4b37d7e933984 ------------------------------------------------------------ revno: 53 committer: Zygmunt Krynicki branch nick: lava-scheduler timestamp: Wed 2011-07-27 12:24:50 +0200 message: Upgrade dependencies a little modified: setup.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'setup.py' --- setup.py 2011-07-24 21:42:41 +0000 +++ setup.py 2011-07-27 10:24:50 +0000 @@ -22,7 +22,7 @@ setup( name='lava-scheduler', - version=":versiontools:lava_scheduler_app:__version__", + version=":versiontools:lava_scheduler_app:", author="Michael Hudson-Doyle", author_email="michael.hudson@linaro.org", packages=find_packages(), @@ -34,12 +34,12 @@ """, scripts=["lava-scheduler"], install_requires=[ - "lava-server >= 0.1", + "lava-server >= 0.4a1", "twisted", - "south", + "south >= 0.7.3", ], setup_requires=[ - "versiontools >= 1.3.1", + "versiontools >= 1.4", ], tests_require=[ "django-testscenarios",