@@ -24,7 +24,7 @@ the ``-C`` short command line option:
2424
2525 .. code-block :: console
2626
27- $ python -m build \
27+ $ python -m build --wheel \
2828 -Csetup-args="-Doption=true" \
2929 -Csetup-args="-Dvalue=1" \
3030 -Ccompile-args="-j6"
@@ -34,12 +34,11 @@ the ``-C`` short command line option:
3434
3535 .. code-block :: console
3636
37- $ python -m pip wheel . \
37+ $ python -m pip wheel . \
3838 -Csetup-args="-Doption=true" \
3939 -Csetup-args="-Dvalue=1" \
4040 -Ccompile-args="-j6"
4141
42-
4342 Refer to the `build `_ and `pip `_ documentation for details. This
4443example uses the ``python -m pip wheel `` command to build a Python wheel
4544that can be later installed or distributed. To build a package and
@@ -76,18 +75,18 @@ For example:
7675.. tab-set ::
7776
7877 .. tab-item :: pypa/build
79- :sync: key_pypa_build
78+ :sync: key_pypa_build
8079
81- .. code-block :: console
80+ .. code-block :: console
8281
83- $ python -m build -Cbuild-dir=build
82+ $ python -m build --wheel -Cbuild-dir=build
8483
8584 .. tab-item :: pip
86- :sync: key_pip
85+ :sync: key_pip
8786
88- .. code-block :: console
87+ .. code-block :: console
8988
90- $ python -m pip install . -Cbuild-dir=build
89+ $ python -m pip install . -Cbuild-dir=build
9190
9291 After running this command, the ``build `` directory will contain all
9392the build artifacts and support files created by ``meson ``, ``ninja ``
0 commit comments