From 49d790a1f41ec9f9fcfc54c827f3a01403a11027 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sat, 22 Feb 2025 12:12:47 -1000 Subject: [PATCH] Remove TODO around reducing incompatible wheel size (#11712) ## Summary This actually doesn't reduce the variant size :) --- crates/uv-distribution-types/src/prioritized_distribution.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/uv-distribution-types/src/prioritized_distribution.rs b/crates/uv-distribution-types/src/prioritized_distribution.rs index 4c33415f0..7d8260c51 100644 --- a/crates/uv-distribution-types/src/prioritized_distribution.rs +++ b/crates/uv-distribution-types/src/prioritized_distribution.rs @@ -294,8 +294,6 @@ pub enum IncompatibleWheel { /// The wheel tags do not match those of the target Python platform. Tag(IncompatibleTag), /// The required Python version is not a superset of the target Python version range. - /// - /// TODO(charlie): Consider making this two variants to reduce enum size. RequiresPython(VersionSpecifiers, PythonRequirementKind), /// The wheel was yanked. Yanked(Yanked),