We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2e77df commit 84bb304Copy full SHA for 84bb304
src/pip/_internal/req/req_install.py
@@ -184,12 +184,12 @@ def __init__(
184
# If config settings are provided, enforce PEP 517.
185
if self.config_settings:
186
if self.use_pep517 is False:
187
- raise InstallationError(
188
- f"Disabling PEP 517 processing is not allowed for {self} "
189
- f"when --config-settings are specified."
+ logger.warning(
+ "--no-use-pep517 ignored for %s "
+ "because --config-settings are specified.",
190
+ self,
191
)
- else:
192
- self.use_pep517 = True
+ self.use_pep517 = True
193
194
# This requirement needs more preparation before it can be built
195
self.needs_more_preparation = False
0 commit comments