You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ke...@apache.org on 2014/11/19 02:29:06 UTC

incubator-aurora git commit: Drop argparse dependency; it's part of python 2.7

Repository: incubator-aurora
Updated Branches:
  refs/heads/master c44aa5c06 -> 89e6d1ea5


Drop argparse dependency; it's part of python 2.7

Testing Done:
./pants build src/test/python:all
bash src/test/sh/org/apache/aurora/e2e/test_end_to_end_v2.sh

Bugs closed: AURORA-891

Reviewed at https://reviews.apache.org/r/28140/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/89e6d1ea
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/89e6d1ea
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/89e6d1ea

Branch: refs/heads/master
Commit: 89e6d1ea556203bec369d60f0f33263191df7c6d
Parents: c44aa5c
Author: Joshua Cohen <jc...@twopensource.com>
Authored: Tue Nov 18 17:28:51 2014 -0800
Committer: Kevin Sweeney <ke...@apache.org>
Committed: Tue Nov 18 17:28:51 2014 -0800

----------------------------------------------------------------------
 3rdparty/python/BUILD                          | 1 -
 src/main/python/apache/aurora/client/cli/BUILD | 1 -
 2 files changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89e6d1ea/3rdparty/python/BUILD
----------------------------------------------------------------------
diff --git a/3rdparty/python/BUILD b/3rdparty/python/BUILD
index 63ae77f..91cc1e8 100644
--- a/3rdparty/python/BUILD
+++ b/3rdparty/python/BUILD
@@ -30,7 +30,6 @@ python_requirement_library(
 COMMONS_VERSION = '0.3.2'
 MESOS_VERSION = '0.20.1'
 
-make_link('argparse', '1.2.1')
 make_link('bottle', '0.11.6')
 make_link('Flask', '0.9')
 make_link('mako', '0.4.0')

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/89e6d1ea/src/main/python/apache/aurora/client/cli/BUILD
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/client/cli/BUILD b/src/main/python/apache/aurora/client/cli/BUILD
index 9955703..e6627a8 100644
--- a/src/main/python/apache/aurora/client/cli/BUILD
+++ b/src/main/python/apache/aurora/client/cli/BUILD
@@ -63,7 +63,6 @@ python_library(
     'update.py',
   ],
   dependencies = [
-    '3rdparty/python:argparse',
     '3rdparty/python:requests',
     '3rdparty/python:twitter.common.python',
     '3rdparty/python:twitter.common.quantity',