Skip to content

Commit

Permalink
chore(deps): bumps the default poetry version used in image and the e…
Browse files Browse the repository at this point in the history
…nvironment to 1.7.1 (#119)

* chore(deps): bumps poetry version to 1.7.1

Signed-off-by: Jennifer Power <[email protected]>

* chore: updates poetry lock check command in Makefile

Signed-off-by: Jennifer Power <[email protected]>

---------

Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Jan 5, 2024
1 parent d3a8284 commit aa26991
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM quay.io/fedora/fedora:37

ARG POETRY_VERSION=1.5.1
ARG POETRY_VERSION=1.7.1

RUN dnf -y update && \
yum -y reinstall shadow-utils && \
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
poetry-version:
required: false
description: "The poetry version to use"
default: "1.5.1"
default: "1.7.1"
python-version:
required: false
description: "The python version to use"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN microdnf update -y \

FROM python-base AS dependencies

ARG POETRY_VERSION=1.5.1
ARG POETRY_VERSION=1.7.1

# https://python-poetry.org/docs/configuration/#using-environment-variables
ENV POETRY_HOME="/opt/poetry" \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pre-commit:
@poetry run pre-commit install

lint:
@poetry lock --check
@poetry check --lock
@poetry run isort --profile=black --lines-after-imports=2 \
--check-only $(TESTS) $(PYMODULE)
@poetry run black --check $(TESTS) $(PYMODULE) --diff
Expand Down

0 comments on commit aa26991

Please sign in to comment.