We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 856333e commit b3f459cCopy full SHA for b3f459c
src/hatch_uvenv/plugin.py
@@ -163,6 +163,9 @@ def add_group_flags(self, command):
163
def add_extra_flags(self, command):
164
command.extend([f"--extra={feature}" for feature in self.features])
165
166
+ def add_uv_flags(self, command):
167
+ command.extend(self.config.get("uv-flags", []))
168
+
169
def remove(self):
170
self.virtual_env.remove()
171
self.build_virtual_env.remove()
@@ -200,7 +203,7 @@ def command_context(self):
200
203
yield
201
204
202
205
def construct_pip_install_command(self, args: list[str]):
- command = ["uv", "sync", "--active", "--all-packages"]
206
+ command = ["uv", "sync", "--active"]
207
208
# Default to -1 verbosity
209
add_verbosity_flag(command, self.verbosity, adjustment=-1)
0 commit comments