From 84e5f6e871f344aa8b414c52bf95b22a992b382d Mon Sep 17 00:00:00 2001 From: Topher Anderson <48180628+topherinternational@users.noreply.github.com> Date: Wed, 25 Sep 2024 07:35:19 -0500 Subject: [PATCH] Regression fix: don't prefetch source dists with unbounded lower-bound ranges (#7683) #7226 modified the check to skip prefetching of source dists without proper minimum-version bounds, and wound up flipping the boolean expression. This change flips the some/none expression so that the intended skip happens as expected. Fixes #7680. --- crates/uv-resolver/src/resolver/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-resolver/src/resolver/mod.rs b/crates/uv-resolver/src/resolver/mod.rs index e66a351dd..8ec31f769 100644 --- a/crates/uv-resolver/src/resolver/mod.rs +++ b/crates/uv-resolver/src/resolver/mod.rs @@ -1813,7 +1813,7 @@ impl ResolverState