Skip to content

Commit a330bd4

Browse files
committed
Specify environment-conditional transitive deps.
Workaround for pypa/pip#12770.
1 parent edffb70 commit a330bd4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tools/vendored.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,11 @@ def install_deps(deps, vendor):
219219
"""
220220
Install the deps to vendor.
221221
"""
222+
# workaround for https://github.com/pypa/pip/issues/12770
223+
deps += [
224+
'zipp >= 3.7',
225+
'backports.tarfile',
226+
]
222227
install_args = [
223228
sys.executable,
224229
'-m',

0 commit comments

Comments
 (0)