From 294f752251a5285a0ed2f106725a6930964d475d Mon Sep 17 00:00:00 2001 From: mattip Date: Sun, 29 Mar 2020 19:08:03 +0300 Subject: [PATCH] packaging orders tags differently: remove required first tag --- src/wheel/bdist_wheel.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wheel/bdist_wheel.py b/src/wheel/bdist_wheel.py index 5a249cbc..1303812d 100644 --- a/src/wheel/bdist_wheel.py +++ b/src/wheel/bdist_wheel.py @@ -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