Skip to content

Commit 5253b9a

Browse files
committed
version update 27.4 - fix to work on py3.14 as .12 is out of support
1 parent c5c751e commit 5253b9a

3 files changed

Lines changed: 16 additions & 30 deletions

File tree

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ FROM alpine AS runtime
33
VOLUME /config
44
WORKDIR /app
55

6-
RUN apk update; apk add --no-cache python3=~3.12 tesseract-ocr-data-eng re2-dev
6+
RUN apk update; apk add --no-cache python3=~3.14 tesseract-ocr-data-eng re2-dev
77

88
FROM alpine AS build
99

1010
WORKDIR /deps
1111

12-
RUN apk update; apk add --no-cache g++ git re2-dev poetry python3-dev=~3.12
12+
RUN apk update; apk add --no-cache g++ git re2-dev poetry python3-dev=~3.14
1313

1414
COPY pyproject.toml poetry.lock poetry.toml ./
1515
RUN poetry env use $(which python)

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tool.poetry]
22
name = "fred"
3-
version = "2.27.3"
3+
version = "2.27.4"
44
description = "A Discord bot for the Satisfactory Modding Discord "
55
authors = ["Feyko <feykook@gmail.com>", "Borketh <does.not.kompute@gmail.com>", "Mircea Roata <mircearoatapalade@yahoo.ro>"]
66
license = "MIT License"
77

88
[tool.poetry.dependencies]
9-
python = "^3.12.0"
9+
python = "^3.14.0"
1010
nextcord = { extras = ["speed"], version = "^3.2.0" }
1111
Pillow = "^12.1.1"
1212
pytesseract = "^0.3.13"

0 commit comments

Comments
 (0)