Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
u committed Jan 8, 2025
1 parent 25b9e4c commit 9204829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py2pack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def fix_data(data):
for required_dist in requires_dist:
req = Requirement(required_dist)
if found := re.search(extra_from_req, str(req.marker)):
extras.add(found.group(1))
extras.append(found.group(1))
provides_extra = list(sorted(set([*extras, *provides_extra])))
data_info["requires_dist"] = requires_dist
data_info["provides_extra"] = provides_extra
Expand Down

0 comments on commit 9204829

Please sign in to comment.