Skip to content

Commit

Permalink
fix: always assume highest Python patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Jan 21, 2021
1 parent fb5f0bd commit 75df918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cibuildwheel/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __call__(self, build_id: str) -> bool:
except ValueError:
pass
else:
version = Version(f"{major}.{minor}")
version = Version(f"{major}.{minor}.99")
if not self.requires_python.contains(version):
return False

Expand Down

0 comments on commit 75df918

Please sign in to comment.