Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1474)

Unified Diff: bootstrap/update_vendoring.py

Issue 2164713003: Vendor requests. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Remove unneeded stuff. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: bootstrap/update_vendoring.py
diff --git a/bootstrap/update_vendoring.py b/bootstrap/update_vendoring.py
index 8ff8b9f140cb6f56bcb5445232486924b1e92371..bd64b19dd1fee718bc4f14825694143206f9cbe7 100755
--- a/bootstrap/update_vendoring.py
+++ b/bootstrap/update_vendoring.py
@@ -167,6 +167,7 @@ class _VendoredPipPackage(_ActionBase):
install_dir = os.path.join(workdir, 'six')
c.check_call(['pip', 'install', '--verbose', '-t', install_dir,
'%s==%s' % (self._name, self._version)])
+
c.vendor_dir(install_dir, dest)
@@ -249,6 +250,11 @@ _ACTIONS = (
name='six',
version='1.10.0'),
+ _VendoredPipPackage(
dnj 2016/07/20 21:34:07 You don't still want this then, right?
martiniss 2016/07/20 21:39:27 No, I still do. We still want a vendored requests,
dnj 2016/07/20 21:59:44 So you are virtualenv-bootstrapping "requests", bu
martiniss 2016/07/20 22:26:20 Didn't mean to. No virtualenv, only vendor.
+ 'recipe_engine/third_party/requests',
+ name='requests',
+ version='2.10.0'),
+
_VendoredGitRepo(
'recipe_engine/third_party/client-py/libs',
repo='https://github.com/luci/client-py',

Powered by Google App Engine
This is Rietveld 408576698