1
0
Fork 0
mirror of https://github.com/xHyroM/void-packages.git synced 2024-12-27 06:21:06 +01:00
This commit is contained in:
github-actions[bot] 2024-12-25 01:03:26 +00:00
parent acc7d1556a
commit 62b617e34e

View file

@ -79,7 +79,7 @@ def match_markers(req: "Requirement", extras: set[str]) -> bool:
# check the requirement for each extra we want and without any extras
if extras:
return req.marker.evaluate() and any(req.marker.evaluate({"extra": e}) for e in extras)
return req.marker.evaluate() or any(req.marker.evaluate({"extra": e}) for e in extras)
return req.marker.evaluate()