Q12: in `python_distribution()` , `wheel_config_se...
# general
r
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
11 is as high as it goes.
Just kidding! Have you tried "0" instead of "false"?
r
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
Excellent.