Hardcoded downgraded version of Poetry

Latest 1.2 version breaks build because cx-freeze. Latest cx-freeze works on Win, fails on Linux.
This commit is contained in:
Petr Kalis 2022-09-02 15:55:58 +02:00
parent 73309ffc32
commit d2240544ad

View file

@ -109,6 +109,7 @@ detect_python () {
install_poetry () {
echo -e "${BIGreen}>>>${RST} Installing Poetry ..."
export POETRY_HOME="$openpype_root/.poetry"
export POETRY_VERSION="1.1.15"
command -v curl >/dev/null 2>&1 || { echo -e "${BIRed}!!!${RST}${BIYellow} Missing ${RST}${BIBlue}curl${BIYellow} command.${RST}"; return 1; }
curl -sSL https://install.python-poetry.org/ | python -
}