From patchwork Thu Jun 23 10:04:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2191 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 6AB7323F6D for ; Thu, 23 Jun 2011 10:04:17 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 35EA8A181A2 for ; Thu, 23 Jun 2011 10:04:17 +0000 (UTC) Received: by qyk30 with SMTP id 30so1222050qyk.11 for ; Thu, 23 Jun 2011 03:04:16 -0700 (PDT) Received: by 10.229.117.95 with SMTP id p31mr1384225qcq.97.1308823456637; Thu, 23 Jun 2011 03:04:16 -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 jm11cs12979qcb; Thu, 23 Jun 2011 03:04:15 -0700 (PDT) Received: by 10.216.254.82 with SMTP id g60mr1643239wes.90.1308823454736; Thu, 23 Jun 2011 03:04:14 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id j2si3383421wed.122.2011.06.23.03.04.14; Thu, 23 Jun 2011 03:04:14 -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 1QZglh-0002nx-Sr for ; Thu, 23 Jun 2011 10:04:13 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id CDD112E890E for ; Thu, 23 Jun 2011 10:04:13 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-server X-Launchpad-Branch: ~linaro-validation/lava-server/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 181 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-server/trunk] Rev 181: Be pip friendly Message-Id: <20110623100413.17763.65379.launchpad@loganberry.canonical.com> Date: Thu, 23 Jun 2011 10:04:13 -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: f2a63f0abf2b9b443bca1bb34a951c97f9b04bce ------------------------------------------------------------ revno: 181 committer: Zygmunt Krynicki branch nick: trunk timestamp: Thu 2011-06-23 12:02:11 +0200 message: Be pip friendly modified: setup.py --- lp:lava-server https://code.launchpad.net/~linaro-validation/lava-server/trunk You are subscribed to branch lp:lava-server. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-server/trunk/+edit-subscription === modified file 'setup.py' --- setup.py 2011-06-13 10:25:42 +0000 +++ setup.py 2011-06-23 10:02:11 +0000 @@ -20,20 +20,10 @@ from setuptools import setup, find_packages -try: - import versiontools -except ImportError: - print "This package requires python-versiontools to be configured" - print "See: http://packages.python.org/versiontools/installation.html" - raise - - -import lava_server - setup( name='lava-server', - version=versiontools.format_version(lava_server.__version__), + version=":versiontools:lava_server:__version__", author="Zygmunt Krynicki", author_email="zygmunt.krynicki@linaro.org", packages=find_packages(), @@ -70,7 +60,7 @@ 'docutils', ], setup_requires=[ - 'versiontools >= 1.1', + 'versiontools >= 1.3.1', ], tests_require=[ 'django-testscenarios >= 0.6',