Merge remote-tracking branch 'origin/develop' into feature/OP-3553_update-to-python-39

This commit is contained in:
Ondřej Samohel 2022-09-12 11:32:17 +02:00
commit c1a9d5392a
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
336 changed files with 6928 additions and 4624 deletions

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 -
}