@@ -35,8 +35,9 @@ the ``-C`` short command line option:
3535 .. code-block :: console
3636
3737 $ python -m pip wheel . \
38- --config-settings=setup-args="-Doption=disable" \
39- --config-settings=compile-args="-j6"
38+ -Csetup-args="-Doption=true" \
39+ -Csetup-args="-Dvalue=1" \
40+ -Ccompile-args="-j6"
4041
4142
4243Refer to the `build `_ and `pip `_ documentation for details. This
@@ -46,15 +47,16 @@ immediately install it, replace ``wheel`` with ``install``. See the
4647:ref: `how-to-guides-meson-args ` guide for more examples.
4748
4849
49- .. admonition :: Passing multiple settings
50+ .. admonition :: Older pip versions
5051 :class: caution
5152
52- Please note that ``pip `` prior to 23.1 did not offer a way to set a
53- build config setting to a list of strings: later values for the
54- same key passed to ``--config-settings `` override earlier ones,
55- effectively limiting the number of options that can be passed to
56- each command invoked in the build process to one. This limitation
57- has been lifted in ``pip `` release 23.1.
53+ Please note that prior to version 23.1 ``pip `` did not support the ``-C ``
54+ short command line switch for the ``--config-settings `` options and did not
55+ offer a way to set a build config setting to a list of strings: later
56+ values for the same key passed to ``--config-settings `` override earlier
57+ ones, effectively limiting the number of options that can be passed to each
58+ command invoked in the build process to one. This limitation has been
59+ lifted in ``pip `` release 23.1.
5860
5961
6062.. _build : https://pypa-build.readthedocs.io/en/stable/
0 commit comments