Skip to content

Commit

Permalink
chore(deps): update python to v3.12.0 (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Rowan Gillson <[email protected]>
  • Loading branch information
renovate[bot] and arrrgi authored Oct 8, 2023
1 parent f89aa1b commit 48bfd51
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN cmake \
&& make \
&& make install

FROM python:3.11.6-alpine3.18@sha256:3e73c0b6c1f0205225359acac5c8ab1852e7281248d72afda3e1bb8c6f47deab as poetry
FROM python:3.12.0-alpine3.18@sha256:ae35274f417fc81ba6ee1fc84206e8517f28117566ee6a04a64f004c1409bdac as poetry
ENV POETRY_VERSION=1.5.1 \
PIP_DISABLE_PIP_VERSION_CHECK=on
WORKDIR /app
Expand All @@ -28,7 +28,7 @@ RUN apk add --update --no-cache \
COPY poetry.lock poetry.toml pyproject.toml /app/
RUN poetry export --format requirements.txt --output requirements.txt

FROM python:3.11.6-alpine3.18@sha256:3e73c0b6c1f0205225359acac5c8ab1852e7281248d72afda3e1bb8c6f47deab as runtime
FROM python:3.12.0-alpine3.18@sha256:ae35274f417fc81ba6ee1fc84206e8517f28117566ee6a04a64f004c1409bdac as runtime
ENV PIP_DISABLE_PIP_VERSION_CHECK=on \
EDITOR=vim \
BEETSDIR=/config
Expand All @@ -40,6 +40,7 @@ RUN apk add --update --no-cache \
ffmpeg-libs \
gstreamer \
gst-plugins-good \
py3-setuptools-rust \
vim \
&& pip install --no-cache-dir -r requirements.txt \
&& mkdir /config \
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11.6"
python = "^3.12.0"
beets = "^1.6.0"
flask = "^2.3.3"
pillow = "^10.0.1"
Expand Down

0 comments on commit 48bfd51

Please sign in to comment.