We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4acfd05 + 79fe5db commit 0412085Copy full SHA for 0412085
1 file changed
install-poetry.py
@@ -421,14 +421,14 @@ def _is_self_upgrade_supported(x):
421
return True
422
423
vx = tuple(int(p) for p in mx.groups()[:3]) + (mx.group(5),)
424
- return vx >= (1, 2, 0)
+ return vx >= (1, 1, 7)
425
426
if version and not _is_self_upgrade_supported(version):
427
self._write(
428
colorize(
429
"warning",
430
f"You are installing {version}. When using the current installer, this version does not support "
431
- f"updating using the 'self update' command. Please use 1.2.0a1 or later.",
+ f"updating using the 'self update' command. Please use 1.1.7 or later.",
432
)
433
434
if not self._accept_all:
0 commit comments