Skip to content

Commit

Permalink
set lowest intallable version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsalvador committed May 13, 2024
1 parent 135b8e5 commit bbacad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ install_poetry() {
export POETRY_HOME="$install_path"

if [[ "$install_type" == "version" ]]; then
semver_ge "$MISE_INSTALL_VERSION" 1.7.0 && install_vercomp="ge" || install_vercomp="lt"
semver_ge "$MISE_INSTALL_VERSION" 1.4.0 && install_vercomp="ge" || install_vercomp="lt"
else
install_vercomp="ge"
fi
Expand All @@ -43,7 +43,7 @@ install_poetry() {
elif [[ "$install_vercomp" == "ge" ]]; then
install_url="https://install.python-poetry.org"
else
fail "Error: Please avoid using ancient Poetry versions prior to 1.7.0"
fail "Error: Please avoid using ancient Poetry versions prior to 1.4.0"
fi

if [[ "$install_type" == "version" ]]; then
Expand Down

0 comments on commit bbacad8

Please sign in to comment.