We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fca249 commit 022cedbCopy full SHA for 022cedb
tools/vendored.py
@@ -1,6 +1,5 @@
1
import functools
2
import re
3
-import sys
4
import subprocess
5
6
import jaraco.packaging.metadata
@@ -52,14 +51,8 @@ def install_deps(deps, vendor):
52
51
"""
53
Install the deps to vendor.
54
55
- # workaround for https://github.com/pypa/pip/issues/12770
56
- deps += [
57
- 'zipp >= 3.7',
58
- 'backports.tarfile',
59
- ]
60
install_args = [
61
- sys.executable,
62
- '-m',
+ 'uv',
63
'pip',
64
'install',
65
'--target',
tox.ini
@@ -77,6 +77,7 @@ deps =
77
jaraco.packaging
78
# workaround for pypa/pyproject-hooks#192
79
pyproject-hooks<1.1
80
+ uv
81
commands =
82
vendor: python -m tools.vendored
83
0 commit comments