@@ -13,7 +13,7 @@ A :term:`pyproject.toml` file is strongly recommended.
13
13
The presence of a :file: `pyproject.toml ` file itself does not bring much. [# ]_
14
14
What is actually strongly recommended is the ``[build-system] `` table in :file: `pyproject.toml `.
15
15
16
- .. [# ] Note that it has influence on the build isolation feature of * pip * ,
16
+ .. [# ] Note that it has influence on the build isolation feature of pip,
17
17
see below.
18
18
19
19
@@ -24,10 +24,10 @@ No, :file:`setup.py` can exist in a modern :ref:`setuptools` based project.
24
24
The :term: `setup.py ` file is a valid configuration file for setuptools
25
25
that happens to be written in Python.
26
26
However, the following commands are deprecated and **MUST NOT ** be run anymore,
27
- and their recommended replacement commands can be used instead:
27
+ and their recommended replacement commands should be used instead:
28
28
29
29
+---------------------------------+----------------------------------------+
30
- | Deprecated | Current recommendation |
30
+ | Deprecated | Recommendation |
31
31
+=================================+========================================+
32
32
| ``python setup.py install `` | ``python -m pip install . `` |
33
33
+---------------------------------+----------------------------------------+
@@ -118,7 +118,7 @@ What is the build isolation feature?
118
118
119
119
Build frontends typically create an ephemeral virtual environment
120
120
where they install only the build dependencies (and their dependencies)
121
- that are listed under ``build-sytem .requires ``
121
+ that are listed under ``build-system .requires ``
122
122
and trigger the build in that environment.
123
123
124
124
For some projects this isolation is unwanted and it can be deactivated as follows:
0 commit comments