Skip to content

Commit

Permalink
packaging orders tags differently: remove required first tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Mar 29, 2020
1 parent 9c6dd62 commit 294f752
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/wheel/bdist_wheel.py
Expand Up @@ -283,8 +283,6 @@ def get_tag(self):
tag = (impl, abi_tag, plat_name)
supported_tags = [(t.interpreter, t.abi, t.platform)
for t in packaging.tags.sys_tags()]
if not self.py_limited_api:
assert tag == supported_tags[0], "%s != %s" % (tag, supported_tags[0])
assert tag in supported_tags, "would build wheel with unsupported tag {}".format(tag)
return tag

Expand Down

0 comments on commit 294f752

Please sign in to comment.