Skip to content

Commit c95bcd1

Browse files
committed
hatch: cli: application: Switch to uv
Address: juftin/hatch-pip-compile#85
1 parent 55dd840 commit c95bcd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hatch/cli/application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ def ensure_plugin_dependencies(self, dependencies: list[Requirement], *, wait_me
260260
if dependencies_in_sync(dependencies):
261261
return
262262

263-
pip_command = [sys.executable, '-u', '-m', 'pip']
263+
pip_command = [sys.executable, '-u', '-m', 'uv', 'pip']
264264

265-
pip_command.extend(['install', '--disable-pip-version-check', '--no-python-version-warning'])
265+
pip_command.extend(['install'])
266266

267267
# Default to -1 verbosity
268268
add_verbosity_flag(pip_command, self.verbosity, adjustment=-1)

0 commit comments

Comments
 (0)