Skip to content

Commit 1b92c9c

Browse files
authored
Simplify conditional (#949)
1 parent a95a328 commit 1b92c9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/packaging/tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def mac_platforms(
439439
else:
440440
arch = arch
441441

442-
if (10, 0) <= version and version < (11, 0):
442+
if (10, 0) <= version < (11, 0):
443443
# Prior to Mac OS 11, each yearly release of Mac OS bumped the
444444
# "minor" version number. The major version was always 10.
445445
major_version = 10

0 commit comments

Comments
 (0)