Skip to content

Commit 04c4da4

Browse files
Fix >= to == typo in is_contained_by docs (#4196)
1 parent 163f328 commit 04c4da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/uv-resolver/src/requires_python.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl RequiresPython {
127127
// does not. But, it's debatable.
128128
//
129129
// If this scheme proves problematic, we could explore using different semantics when
130-
// converting to PubGrub. For example, we could parse `>=3.8.*` as `>=3.8,<3.9`. But this
130+
// converting to PubGrub. For example, we could parse `==3.8.*` as `>=3.8,<3.9`. But this
131131
// too could be problematic. Imagine that the user requests `>=3.8.0b0`, and the target
132132
// declares `==3.8.*`. In this case, we _do_ want to allow resolution, because the target
133133
// is saying it supports all versions of `3.8`, including pre-releases. But under those

0 commit comments

Comments
 (0)