Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion modules/iknowpy/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,9 @@ def run(self):
# the Tag key, which is expected to be different between wheels that
# target different Python versions. This way, we don't merge wheels that
# might be incompatible with each other.
# BDB: also ignore the 'Generator' metadata key
for key, values in metadata.items():
if key != 'Tag' and len(values) > 1:
if key != 'Tag' and key != 'Generator' and len(values) > 1:
raise BuildError(f'Wheels have conflicting metadata for key {key!r} and cannot be merged. Conflicting values are {values!r}.')

python_tags.sort(key=MergeCommand._get_version_from_tag)
Expand Down