We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd3df25 commit 28bdac6Copy full SHA for 28bdac6
src/auditwheel/main_repair.py
@@ -109,7 +109,11 @@ def execute(args, p):
109
from .repair import repair_wheel
110
from .wheel_abi import NonPlatformWheel, analyze_wheel_abi
111
112
- exclude = frozenset(args.EXCLUDE)
+ # Split comma separated values and flatten it
113
+ exclude = frozenset(
114
+ item.strip() for sublist in args.EXCLUDE for item in sublist.split(',')
115
+ )
116
+
117
wheel_policy = WheelPolicies()
118
119
for wheel_file in args.WHEEL_FILE:
0 commit comments