From 7e5abc983cdf18050116516f48e219c7ee3e0613 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Thu, 25 Nov 2021 09:41:29 -0600 Subject: [PATCH] install-poetry.py: Use for 1.1.7 and up See also: - https://github.com/python-poetry/poetry/releases/tag/1.1.7 - https://github.com/asdf-community/asdf-poetry/issues/10#issuecomment-979310607 --- bin/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install b/bin/install index 3cf4dbb..d0265fc 100755 --- a/bin/install +++ b/bin/install @@ -31,7 +31,7 @@ install_poetry() { fail "asdf-poetry supports release installs only" fi - semver_ge "$ASDF_INSTALL_VERSION" 1.2.0 && vercomp="ge" || vercomp="lt" + semver_ge "$ASDF_INSTALL_VERSION" 1.1.7 && vercomp="ge" || vercomp="lt" if [ $vercomp == "ge" ]; then install_url="https://install.python-poetry.org"