Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install-poetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,14 +421,14 @@ def _is_self_upgrade_supported(x):
return True

vx = tuple(int(p) for p in mx.groups()[:3]) + (mx.group(5),)
return vx >= (1, 2, 0)
return vx >= (1, 1, 7)

if version and not _is_self_upgrade_supported(version):
self._write(
colorize(
"warning",
f"You are installing {version}. When using the current installer, this version does not support "
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.",
)
)
if not self._accept_all:
Expand Down