Repository: impala Updated Branches: refs/heads/master 8091b2f46 -> 1c4775d92
IMPALA-6731: Move execnet Python dependency to stage 2 It seems that execnet also cannot be installed together with setuptools-scm if only a local mirror and index are available (similar to https://github.com/pywebhdfs/pywebhdfs/issues/52). Testing: Observed that execnet failed to install during bootstrap_toolchain.py on a CentOS 6.4 EC2 instanc at 5:02pm (within the brownout period). With this change, bootstrap_toolchain.py succeeded. Change-Id: Ic949edcc03f0e068bdd84b6ede487e64dcf2439b Reviewed-on: http://gerrit.cloudera.org:8080/9850 Reviewed-by: David Knupp <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/impala/repo Commit: http://git-wip-us.apache.org/repos/asf/impala/commit/2194dfd0 Tree: http://git-wip-us.apache.org/repos/asf/impala/tree/2194dfd0 Diff: http://git-wip-us.apache.org/repos/asf/impala/diff/2194dfd0 Branch: refs/heads/master Commit: 2194dfd0ff63a51c1b17b1bbcd78895d0c2d6951 Parents: 8091b2f Author: Lars Volker <[email protected]> Authored: Wed Mar 28 16:58:18 2018 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Thu Mar 29 04:38:31 2018 +0000 ---------------------------------------------------------------------- infra/python/deps/requirements.txt | 3 --- infra/python/deps/stage2-requirements.txt | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/impala/blob/2194dfd0/infra/python/deps/requirements.txt ---------------------------------------------------------------------- diff --git a/infra/python/deps/requirements.txt b/infra/python/deps/requirements.txt index bea16f4..d55bc19 100644 --- a/infra/python/deps/requirements.txt +++ b/infra/python/deps/requirements.txt @@ -39,9 +39,6 @@ Flask == 0.10.1 MarkupSafe == 0.23 Werkzeug == 0.11.3 itsdangerous == 0.24 -hdfs == 2.0.2 - docopt == 0.6.2 - execnet == 1.4.0 kazoo == 2.2.1 ordereddict == 1.1 pexpect == 3.3 http://git-wip-us.apache.org/repos/asf/impala/blob/2194dfd0/infra/python/deps/stage2-requirements.txt ---------------------------------------------------------------------- diff --git a/infra/python/deps/stage2-requirements.txt b/infra/python/deps/stage2-requirements.txt index eda2cd3..c7c947c 100644 --- a/infra/python/deps/stage2-requirements.txt +++ b/infra/python/deps/stage2-requirements.txt @@ -27,6 +27,9 @@ pytest == 2.9.2 pytest-random == 0.02 pytest-runner == 4.2 pytest-xdist == 1.17.1 +hdfs == 2.0.2 + docopt == 0.6.2 + execnet == 1.4.0 # Requires pbr pywebhdfs == 0.3.2
