Skip to content

Commit

Permalink
install-poetry.py for 1.1.9+ only due to dependency issue
Browse files Browse the repository at this point in the history
1.1.7 and 1.1.8 will run afoul of python-poetry/poetry#4409
and the needed fix isn't in until 1.1.9.
  • Loading branch information
tony committed Nov 27, 2021
1 parent 7e5abc9 commit 13369e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/install
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install_poetry() {
fail "asdf-poetry supports release installs only"
fi

semver_ge "$ASDF_INSTALL_VERSION" 1.1.7 && vercomp="ge" || vercomp="lt"
semver_ge "$ASDF_INSTALL_VERSION" 1.1.9 && vercomp="ge" || vercomp="lt"

if [ $vercomp == "ge" ]; then
install_url="https://install.python-poetry.org"
Expand Down

0 comments on commit 13369e6

Please sign in to comment.