You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -161,7 +160,7 @@ This disables the use of wheels (cached or otherwise). This could mean that buil
161
160
This mechanism is only preserved for backwards compatibility and should be considered deprecated. A future release of pip may drop these options.
162
161
```
163
162
164
-
The `--global-option`and `--install-option` options are used to pass options to `setup.py`.
163
+
The `--global-option` option is used to pass options to `setup.py`.
165
164
166
165
```{attention}
167
166
These options are highly coupled with how pip invokes setuptools using the {doc}`../reference/build-system/setup-py` build system interface. It is not compatible with newer {doc}`../reference/build-system/pyproject-toml` build system interface.
@@ -171,15 +170,10 @@ This is will not work with other build-backends or newer setup.cfg-only projects
Note that the only way of giving more than one option to `setup.py` is through multiple `--global-option` and `--install-option` options, as shown in the example above. The value of each option is passed as a single argument to the `setup.py` script. Therefore, a line such as the following is invalid and would result in an installation error.
183
-
184
-
# Invalid. Please use '--install-option' twice as shown above.
0 commit comments