We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f9005d commit 50e85e3Copy full SHA for 50e85e3
src/pip/_internal/commands/lock.py
@@ -91,6 +91,12 @@ def add_options(self) -> None:
91
def run(self, options: Values, args: List[str]) -> int:
92
logger.verbose("Using %s", get_pip_version())
93
94
+ logger.warning(
95
+ "pip lock is currently an experimental command. "
96
+ "It may be removed/changed in a future release "
97
+ "without prior warning."
98
+ )
99
+
100
session = self.get_default_session(options)
101
102
finder = self._build_package_finder(
0 commit comments