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

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: Fix deps.pyl 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
« no previous file with comments | « bootstrap/deps.pyl ('k') | recipe_engine/third_party/requests/.gitignore » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
+ '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',
« no previous file with comments | « bootstrap/deps.pyl ('k') | recipe_engine/third_party/requests/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698