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 b1ce263 commit 005b6f2Copy full SHA for 005b6f2
src/lightning_app/utilities/cli_helpers.py
@@ -281,7 +281,7 @@ def _check_version_and_upgrade():
281
prompt = f"A newer version of {__package_name__} is available ({new_version}). Would you like to upgrade?"
282
283
if click.confirm(prompt, default=True):
284
- command = f"pip install '{__package_name__}=={new_version}'"
+ command = f"pip install {__package_name__}=={new_version}"
285
286
logger.info(f"⚡ RUN: {command}")
287
0 commit comments