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 CE314200D29 for ; Thu, 21 Sep 2017 00:35:01 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id CC7C91609E2; Wed, 20 Sep 2017 22:35:01 +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 4232A1609E3 for ; Thu, 21 Sep 2017 00:35:01 +0200 (CEST) Received: (qmail 87124 invoked by uid 500); 20 Sep 2017 22:35:00 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 87115 invoked by uid 99); 20 Sep 2017 22:35:00 -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; Wed, 20 Sep 2017 22:35:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 98FDFDF9C3; Wed, 20 Sep 2017 22:34:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: robertwb@apache.org To: commits@beam.apache.org Date: Wed, 20 Sep 2017 22:34:59 -0000 Message-Id: <3f0a881defcb4c479d218300a5646c8f@git.apache.org> In-Reply-To: <0b97d7a9be6e4522b8ad248458354bff@git.apache.org> References: <0b97d7a9be6e4522b8ad248458354bff@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] beam git commit: Exclude incompatible six release, part 2 archived-at: Wed, 20 Sep 2017 22:35:02 -0000 Exclude incompatible six release, part 2 Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/fe6e95b2 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/fe6e95b2 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/fe6e95b2 Branch: refs/heads/master Commit: fe6e95b28da11b2556e449c3c8e6bc5c8f42dde2 Parents: 59542c3 Author: Charles Chen Authored: Wed Sep 20 12:26:39 2017 -0700 Committer: Robert Bradshaw Committed: Wed Sep 20 15:34:41 2017 -0700 ---------------------------------------------------------------------- sdks/python/setup.py | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/fe6e95b2/sdks/python/setup.py ---------------------------------------------------------------------- diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 2bc2e99..cac2ea7 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -104,6 +104,9 @@ REQUIRED_PACKAGES = [ 'oauth2client>=2.0.1,<4.0.0', 'protobuf>=3.2.0,<=3.3.0', 'pyyaml>=3.12,<4.0.0', + # Six 1.11.0 incompatible with apitools. + # TODO(BEAM-2964): Remove the upper bound. + 'six>=1.9,<1.11', 'typing>=3.6.0,<3.7.0', ]