From 84b9ae2b924c3b8a8aaa5d2e92a3d9747d2cd7b2 Mon Sep 17 00:00:00 2001 From: konsti Date: Fri, 7 Feb 2025 17:49:56 +0100 Subject: [PATCH] Typo in `release_specifiers_to_ranges` docs (#11320) --- crates/uv-pep440/src/version_ranges.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-pep440/src/version_ranges.rs b/crates/uv-pep440/src/version_ranges.rs index 526dce967..392982820 100644 --- a/crates/uv-pep440/src/version_ranges.rs +++ b/crates/uv-pep440/src/version_ranges.rs @@ -123,7 +123,7 @@ impl From for Ranges { /// /// These semantics are used for testing Python compatibility (e.g., `requires-python` against /// the user's installed Python version). In that context, it's more intuitive that `3.13.0b0` -/// is allowed for projects that declare `requires-python = ">3.13"`. +/// is allowed for projects that declare `requires-python = ">=3.13"`. /// /// See: pub fn release_specifiers_to_ranges(specifiers: VersionSpecifiers) -> Ranges {