aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/extern
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-03-17 14:10:32 -0400
committerJason R. Coombs <jaraco@jaraco.com>2018-03-17 14:10:32 -0400
commit929acc4e551448a68411968fb50336ad51ed4d3c (patch)
tree6eb60f4a8825bd6180746a984c423b15a5d57281 /setuptools/extern
parentd0f7a33daba39f60aa402c094cd4276b8b6ce462 (diff)
downloadexternal_python_setuptools-929acc4e551448a68411968fb50336ad51ed4d3c.tar.gz
external_python_setuptools-929acc4e551448a68411968fb50336ad51ed4d3c.tar.bz2
external_python_setuptools-929acc4e551448a68411968fb50336ad51ed4d3c.zip
Setuptools now vendors its own direct dependencies (packaging, six, pyparsing). Ref #1296.
Diffstat (limited to 'setuptools/extern')
-rw-r--r--setuptools/extern/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/extern/__init__.py b/setuptools/extern/__init__.py
index 70ac180c..da3d668d 100644
--- a/setuptools/extern/__init__.py
+++ b/setuptools/extern/__init__.py
@@ -69,5 +69,5 @@ class VendorImporter:
sys.meta_path.append(self)
-names = 'six',
-VendorImporter(__name__, names, 'pkg_resources._vendor').install()
+names = 'six', 'packaging', 'pyparsing',
+VendorImporter(__name__, names, 'setuptools._vendor').install()