Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C0E55200B16 for ; Mon, 20 Jun 2016 18:40:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BF943160A55; Mon, 20 Jun 2016 16:40:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 15E0F160A26 for ; Mon, 20 Jun 2016 18:40:54 +0200 (CEST) Received: (qmail 33982 invoked by uid 500); 20 Jun 2016 16:40:54 -0000 Mailing-List: contact commits-help@airflow.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@airflow.incubator.apache.org Delivered-To: mailing list commits@airflow.incubator.apache.org Received: (qmail 33973 invoked by uid 99); 20 Jun 2016 16:40:54 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jun 2016 16:40:54 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id E6CE9C3496 for ; Mon, 20 Jun 2016 16:40:53 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id y_EqujqRXNaT for ; Mon, 20 Jun 2016 16:40:52 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id B8E975F369 for ; Mon, 20 Jun 2016 16:40:51 +0000 (UTC) Received: (qmail 33970 invoked by uid 99); 20 Jun 2016 16:40:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jun 2016 16:40:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C4366DFC6F; Mon, 20 Jun 2016 16:40:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jlowin@apache.org To: commits@airflow.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-airflow git commit: [AIRFLOW-31] Add zope dependency Date: Mon, 20 Jun 2016 16:40:50 +0000 (UTC) archived-at: Mon, 20 Jun 2016 16:40:55 -0000 Repository: incubator-airflow Updated Branches: refs/heads/master 004272b15 -> 45b735bae [AIRFLOW-31] Add zope dependency Closes #1608 from jlowin/standard-imports-2. Also closes AIRFLOW-257. Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/45b735ba Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/45b735ba Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/45b735ba Branch: refs/heads/master Commit: 45b735baeac794b54dd89ced2f43eec54adf13f7 Parents: 004272b Author: jlowin Authored: Mon Jun 20 12:40:07 2016 -0400 Committer: jlowin Committed: Mon Jun 20 12:40:27 2016 -0400 ---------------------------------------------------------------------- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/45b735ba/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index 978c484..3fc77ff 100644 --- a/setup.py +++ b/setup.py @@ -199,6 +199,7 @@ def do_setup(): 'setproctitle>=1.1.8, <2', 'sqlalchemy>=0.9.8', 'thrift>=0.9.2, <0.10', + 'zope.deprecation>=4.0, <5.0', ], extras_require={ 'all': devel_all, @@ -257,4 +258,3 @@ def do_setup(): if __name__ == "__main__": do_setup() -