Skip to content

Commit 4b61b8e

Browse files
henryiiilayday
authored andcommitted
Apply suggestions from code review
Co-authored-by: layday <[email protected]>
1 parent d6138f5 commit 4b61b8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/build/_util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ def parse_wheel_filename(filename: str) -> re.Match[str] | None:
7474
# the default in Python 3.14. The first series of releases with the filter
7575
# had a broken filter that could not process symlinks correctly.
7676
if (
77-
(3, 8, 19) <= sys.version_info < (3, 9)
78-
or (3, 9, 19) <= sys.version_info < (3, 10)
77+
(3, 8, 18) <= sys.version_info < (3, 9)
78+
or (3, 9, 18) <= sys.version_info < (3, 10)
7979
or (3, 10, 13) <= sys.version_info < (3, 11)
80-
or (3, 11, 5) < sys.version_info < (3, 12)
80+
or (3, 11, 5) <= sys.version_info < (3, 12)
8181
or (3, 12) <= sys.version_info < (3, 14)
8282
):
8383

0 commit comments

Comments
 (0)