Skip to content

Commit

Permalink
Specify environment-conditional transitive deps.
Browse files Browse the repository at this point in the history
Workaround for pypa/pip#12770.
  • Loading branch information
jaraco committed Jul 2, 2024
1 parent edffb70 commit a330bd4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/vendored.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,11 @@ def install_deps(deps, vendor):
"""
Install the deps to vendor.
"""
# workaround for https://github.com/pypa/pip/issues/12770
deps += [
'zipp >= 3.7',
'backports.tarfile',
]
install_args = [
sys.executable,
'-m',
Expand Down

0 comments on commit a330bd4

Please sign in to comment.