Skip to content

Commit 06c6ea6

Browse files
Bump idna from 3.4 to 3.7 (#1575)
* Bump idna from 3.4 to 3.7 Bumps [idna](https://github.com/kjd/idna) from 3.4 to 3.7. - [Release notes](https://github.com/kjd/idna/releases) - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst) - [Commits](kjd/idna@v3.4...v3.7) --- updated-dependencies: - dependency-name: idna dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump Poetry and idna version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: vector-of-bool <[email protected]>
1 parent 2cbb8bf commit 06c6ea6

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/poetry.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,15 @@
2626
# • The default full path to the Poetry that will be installed and run by
2727
# this script (not present until after ensure-poetry or run-poetry is
2828
# executed).
29-
# * WANT_POETRY_VERSION (overridable) (default 1.5.1)
29+
# * WANT_POETRY_VERSION (overridable) (default 1.8.2)
3030
# • The version of Poetry that will be installed by run-poetry when executed.
3131
# * POETRY_PYTHON_VERSION (overridable) (default to result of find-python)
3232
# • The Python binary to use by the Poetry installer and virtual environment(s).
3333

3434
# Load vars and utils:
3535
. "$(dirname "${BASH_SOURCE[0]}")/use.sh" python paths base with_lock download
3636

37-
: "${WANT_POETRY_VERSION:=1.5.1}"
38-
: "${POETRY_PYTHON_BINARY:="$(find-python)"}"
37+
: "${WANT_POETRY_VERSION:=1.8.2}"
3938
declare -r -x POETRY_HOME=${FORCE_POETRY_HOME:-"$BUILD_CACHE_DIR/poetry-$WANT_POETRY_VERSION"}
4039
declare -r POETRY_EXE=$POETRY_HOME/bin/poetry$EXE_SUFFIX
4140

@@ -49,6 +48,7 @@ install-poetry() {
4948
installer=$poetry_home/install-poetry.py
5049
download-file --uri=https://install.python-poetry.org --out="$installer"
5150
# Run the install:
51+
: "${POETRY_PYTHON_BINARY:="$(find-python)"}"
5252
with-lock "$POETRY_HOME/.install.lock" \
5353
env POETRY_HOME="$poetry_home" \
5454
"$POETRY_PYTHON_BINARY" -u "$installer" --yes --version "$poetry_version" \
@@ -66,6 +66,7 @@ ensure-poetry() {
6666
if ! is-file "$home/installed.txt" || [[ "$(cat "$home/installed.txt")" != "$version" ]]; then
6767
install-poetry "$version" "$home"
6868
fi
69+
: "${POETRY_PYTHON_BINARY:="$(find-python)"}"
6970
# Extra step must be taken to ensure Poetry's virtual environment uses the correct Python binary.
7071
# See: https://github.com/python-poetry/poetry/issues/522
7172
with-lock "$POETRY_HOME/.install.lock" \

0 commit comments

Comments
 (0)