Skip to content

Commit a77bcfe

Browse files
committed
Bump Poetry from 1.2.0 to 1.3.2
1 parent d946c03 commit a77bcfe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

template/Dockerfile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV PYTHONUNBUFFERED=1 \
1414
POETRY_HOME="/opt/poetry" \
1515
POETRY_VIRTUALENVS_IN_PROJECT=true \
1616
POETRY_NO_INTERACTION=1 \
17-
POETRY_VERSION=1.2.0 \
17+
POETRY_VERSION=1.3.2 \
1818
POETRY_INSTALL_OPTS="--no-interaction --without dev --no-root" \
1919
PYSETUP_PATH="/pysetup" \
2020
VENV_PATH="/pysetup/.venv"

template/Makefile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SHELL=/usr/bin/env bash -o pipefail -o errexit
1212
TAG ?= $(shell cat TAG)
1313
POETRY_HOME ?= ${HOME}/.local/share/pypoetry
1414
POETRY_BINARY ?= ${POETRY_HOME}/venv/bin/poetry
15-
POETRY_VERSION ?= 1.2.0
15+
POETRY_VERSION ?= 1.3.2
1616

1717
help: ## Display this help
1818
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)

template/build/install.sh.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ fi
2929

3030
POETRY_HOME="${POETRY_HOME:=${HOME}/.local/share/pypoetry}"
3131
POETRY_BINARY="${POETRY_BINARY:=${POETRY_HOME}/venv/bin/poetry}"
32-
POETRY_VERSION="${POETRY_VERSION:=1.2.0}"
32+
POETRY_VERSION="${POETRY_VERSION:=1.3.2}"
3333
if ! command -v "$POETRY_BINARY" &> /dev/null; then
3434
echo "[install] Poetry is not installed. Begin download and install."
35-
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/1.2.0/install-poetry.py | POETRY_HOME=$POETRY_HOME POETRY_VERSION=$POETRY_VERSION $PYTHON -
35+
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/1.3.2/install-poetry.py | POETRY_HOME=$POETRY_HOME POETRY_VERSION=$POETRY_VERSION $PYTHON -
3636
fi
3737

3838
POETRY_INSTALL_OPTS="${POETRY_INSTALL_OPTS:="--no-interaction"}"

0 commit comments

Comments
 (0)