aboutsummaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-08-27 08:45:33 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-08-27 08:45:33 -0400
commit691e6ac03339d6aef045e05872b286d91e9f49b9 (patch)
tree1afa8ae4266967740b54f30d9b1ba1e5536a02d4 /pavement.py
parent1aa71905fc9bd9a13f2b0c371e869ae8eb27308c (diff)
downloadexternal_python_setuptools-691e6ac03339d6aef045e05872b286d91e9f49b9.tar.gz
external_python_setuptools-691e6ac03339d6aef045e05872b286d91e9f49b9.tar.bz2
external_python_setuptools-691e6ac03339d6aef045e05872b286d91e9f49b9.zip
Add appdirs as vendored package. Ref #763.
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pavement.py b/pavement.py
index 3d840086..f85617d4 100644
--- a/pavement.py
+++ b/pavement.py
@@ -12,9 +12,11 @@ def remove_all(paths):
@task
def update_vendored():
vendor = Path('pkg_resources/_vendor')
+ # pip uninstall doesn't support -t, so do it manually
remove_all(vendor.glob('packaging*'))
remove_all(vendor.glob('six*'))
remove_all(vendor.glob('pyparsing*'))
+ remove_all(vendor.glob('appdirs*'))
install_args = [
'install',
'-r', str(vendor / 'vendored.txt'),