From patchwork Thu Nov 12 06:05:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 543237 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id F2BB91402B7 for ; Thu, 12 Nov 2015 17:06:01 +1100 (AEDT) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id D65DC1A08F4 for ; Thu, 12 Nov 2015 17:06:01 +1100 (AEDT) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by lists.ozlabs.org (Postfix) with ESMTP id 8C05D1A0514 for ; Thu, 12 Nov 2015 17:05:22 +1100 (AEDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 11 Nov 2015 22:05:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,280,1444719600"; d="scan'208";a="849161349" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 11 Nov 2015 22:05:18 -0800 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id tAC65Ibe029427; Thu, 12 Nov 2015 06:05:18 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id tAC65IjU004938; Thu, 12 Nov 2015 06:05:18 GMT Received: (from sfinucan@localhost) by sivswdev01.ir.intel.com with id tAC65I6h004934; Thu, 12 Nov 2015 06:05:18 GMT From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH 5/5] Cleanup requirements Date: Thu, 12 Nov 2015 06:05:13 +0000 Message-Id: <1447308313-4526-6-git-send-email-stephen.finucane@intel.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1447308313-4526-1-git-send-email-stephen.finucane@intel.com> References: <1447308313-4526-1-git-send-email-stephen.finucane@intel.com> X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" * python-dateutil is only used in tests, so remove it from the production requirements * mysqlclient is prefered to MySQLdb, so use that [1] * selenium does not have its version fixed, so resolve that [1] https://docs.djangoproject.com/en/1.8/ref/databases/#mysql-db-api-drivers Signed-off-by: Stephen Finucane --- requirements-prod.txt | 3 +-- requirements-test.txt | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/requirements-prod.txt b/requirements-prod.txt index 5c825bc..1d2f591 100644 --- a/requirements-prod.txt +++ b/requirements-prod.txt @@ -1,3 +1,2 @@ Django<1.9,>=1.8 -MySQL-python==1.2.5 -python-dateutil==1.5 +mysqlclient==1.3.7 diff --git a/requirements-test.txt b/requirements-test.txt index e6c34ec..3e511a0 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,4 +1,4 @@ -MySQL-python==1.2.5 +mysqlclient==1.3.7 psycopg2==2.6.1 python-dateutil==1.5 -selenium +selenium==2.48.0