Skip to content

Commit 0cc7a39

Browse files
committed
install report: added experimental status warning
1 parent 19564a2 commit 0cc7a39

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/pip/_internal/commands/install.py

+6
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,12 @@ def run(self, options: Values, args: List[str]) -> int:
371371
)
372372

373373
if options.json_report_file:
374+
logger.warning(
375+
"--report is currently an experimental option. "
376+
"The output format may change in a future release "
377+
"without prior warning."
378+
)
379+
374380
report = InstallationReport(requirement_set.requirements_to_install)
375381
if options.json_report_file == "-":
376382
print_json(data=report.to_dict())

0 commit comments

Comments
 (0)