From 028145f43b5cbda67a9e8dc86ecb2fb82e5c3d58 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Fri, 18 May 2018 00:46:51 -0400 Subject: [PATCH] Update pip vendoring requirements for licenses Signed-off-by: Dan Ryan --- pipenv/vendor/vendor_pip.txt | 37 ++++++++++++++++++------------------ tasks/vendoring/__init__.py | 4 ++++ 2 files changed, 23 insertions(+), 18 deletions(-) diff --git a/pipenv/vendor/vendor_pip.txt b/pipenv/vendor/vendor_pip.txt index 53181c39..3994e709 100644 --- a/pipenv/vendor/vendor_pip.txt +++ b/pipenv/vendor/vendor_pip.txt @@ -1,21 +1,22 @@ -setuptools==39.1.0 -appdirs==1.4.0 -distlib==0.2.4 +appdirs==1.4.3 +distlib==0.2.7 distro==1.2.0 -html5lib==1.0b10 -six==1.10.0 -colorama==0.3.7 -requests==2.18.4 -chardet==3.0.4 -idna==2.6 -urllib3==1.22 -certifi==2018.1.18 -CacheControl==0.11.7 +html5lib==1.0.1 +six==1.11.0 +colorama==0.3.9 +CacheControl==0.12.4 +msgpack-python==0.5.6 lockfile==0.12.2 -ordereddict==1.1 -progress==1.2 -ipaddress==1.0.17 -packaging==16.8 -pyparsing==2.1.10 +progress==1.3 +ipaddress==1.0.19 # Only needed on 2.6 and 2.7 +packaging==17.1 +pyparsing==2.2.0 +pytoml==0.1.14 retrying==1.3.3 -webencodings==0.5 +requests==2.18.4 + chardet==3.0.4 + idna==2.6 + urllib3==1.22 + certifi==2018.1.18 +setuptools==39.1.0 +webencodings==0.5.1 diff --git a/tasks/vendoring/__init__.py b/tasks/vendoring/__init__.py index 4ca56915..d0fee528 100644 --- a/tasks/vendoring/__init__.py +++ b/tasks/vendoring/__init__.py @@ -25,6 +25,7 @@ LIBRARY_DIRNAMES = { 'python-dotenv': 'dotenv', 'pip-tools': 'piptools', 'setuptools': 'pkg_resources', + 'msgpack-python': 'msgpack', } # from time to time, remove the no longer needed ones @@ -325,6 +326,9 @@ def vendor(ctx, vendor_dir, rewrite=True): piptools_vendor = vendor_dir / 'piptools' / '_vendored' if piptools_vendor.exists(): drop_dir(piptools_vendor) + msgpack = vendor_dir / 'notpip' / '_vendor' / 'msgpack' + if msgpack.exists(): + remove_all(msgpack.glob('*.so')) @invoke.task