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
This disables the use of wheels (cached or otherwise). This could mean that builds will be slower, less deterministic, less reliable and may not behave correctly upon installation.
159
-
160
-
This mechanism is only preserved for backwards compatibility and should be considered deprecated. A future release of pip may drop these options.
161
-
```
162
-
163
-
The `--global-option` option is used to pass options to `setup.py`.
164
-
165
-
```{attention}
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.
167
-
168
-
This is will not work with other build-backends or newer setup.cfg-only projects.
169
-
```
170
-
171
-
If you have a declaration like:
172
-
173
-
FooProject >= 1.2 --global-option="--no-user-cfg"
174
-
175
-
The above translates roughly into running FooProject's `setup.py` script as:
176
-
177
-
python setup.py --no-user-cfg install
178
-
179
-
Note that the only way of giving more than one option to `setup.py` is through multiple `--global-option` options.
0 commit comments