From: Alfredo Deza Date: Fri, 27 Jun 2014 13:13:36 +0000 (-0400) Subject: call vendor.py on remoto so it vendors itself X-Git-Tag: v1.5.6~6^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1a039d39d33c819716123f9f7aebbd768d6e3db8;p=ceph-deploy.git call vendor.py on remoto so it vendors itself Signed-off-by: Alfredo Deza --- diff --git a/setup.py b/setup.py index c1b06d2..9031405 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,11 @@ if pyversion < (2, 7) or (3, 0) <= pyversion <= (3, 1): if os.environ.get('CEPH_DEPLOY_NO_VENDOR'): clean_vendor('remoto') else: + # XXX this should *not* point to master, but a tag. Since remoto 0.0.17 lacks + # the feature to call `vendor.py` and a release for a non-package feature was not + # ideal then the temporary fix is to point to master until a new remoto release vendorize([ - ('remoto', '0.0.16'), + ('remoto', 'master', ['python', 'vendor.py']), ])