We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a64e61 commit 8ebd9c6Copy full SHA for 8ebd9c6
news/3434.bugfix.md
@@ -0,0 +1 @@
1
+Eliminate the warning about inherit_metadata when using uv mode.
src/pdm/cli/actions.py
@@ -203,7 +203,7 @@ def resolve_from_lockfile(
203
strategies = project.lockfile.strategy.copy()
204
if FLAG_INHERIT_METADATA in strategies and groups is not None and not project.config["use_uv"]:
205
return locked_repo.evaluate_candidates(groups)
206
- strategies.update((FLAG_STATIC_URLS, FLAG_INHERIT_METADATA))
+ strategies.add(FLAG_STATIC_URLS)
207
resolver = project.get_resolver()(
208
environment=project.environment,
209
requirements=reqs,
0 commit comments