diff --git a/crates/uv-resolver/src/requires_python.rs b/crates/uv-resolver/src/requires_python.rs index c5706ebc6..226242e7f 100644 --- a/crates/uv-resolver/src/requires_python.rs +++ b/crates/uv-resolver/src/requires_python.rs @@ -127,7 +127,7 @@ impl RequiresPython { // does not. But, it's debatable. // // If this scheme proves problematic, we could explore using different semantics when - // converting to PubGrub. For example, we could parse `>=3.8.*` as `>=3.8,<3.9`. But this + // converting to PubGrub. For example, we could parse `==3.8.*` as `>=3.8,<3.9`. But this // too could be problematic. Imagine that the user requests `>=3.8.0b0`, and the target // declares `==3.8.*`. In this case, we _do_ want to allow resolution, because the target // is saying it supports all versions of `3.8`, including pre-releases. But under those