Currently when wheels are build, dependency wheels are build with it, which (I think) is not necessary. Further, this means that auditwheel will try to fix these wheels as well, which can lead to unexpected problems.
Adding --no-deps to pip wheel should fix this.
@pedrocamargo, following up on your previous issue (#1), I noticed that in a later build the action tried to auditwheel PyQt5, which was missing a dependency, which made the action error and exit... Fixing this, should fix your problem.
Currently when wheels are build, dependency wheels are build with it, which (I think) is not necessary. Further, this means that auditwheel will try to fix these wheels as well, which can lead to unexpected problems.
Adding
--no-deps
topip wheel
should fix this.@pedrocamargo, following up on your previous issue (#1), I noticed that in a later build the action tried to auditwheel PyQt5, which was missing a dependency, which made the action error and exit... Fixing this, should fix your problem.