https://pantsbuild.org/ logo
r

rhythmic-morning-87313

04/30/2022, 3:03 AM
Q12: in
python_distribution()
,
wheel_config_settings={"--global-option": ["--universal", "false"]},
seems not working. How could I pass such extra
bdist_wheel
arguments?
1
e

enough-analyst-54434

04/30/2022, 3:09 AM
11 is as high as it goes.
Just kidding! Have you tried "0" instead of "false"?
r

rhythmic-morning-87313

04/30/2022, 3:18 AM
Yes, I've tried and it did not work.
it says
invalid command name '0'
or
error: invalid command 'false'
ah.
--universal
is a sole boolean flag which "enable" universal build and is explicitly false if not specified
so i have to omit it;;
bdist_wheel
was recognizing the following arg as another command...
solved!
e

enough-analyst-54434

04/30/2022, 4:06 AM
Excellent.
6 Views