Downgrade to Python 3.10 to solve some stability issues.

This commit is contained in:
Ben Rog-Wilhelm 2022-12-17 07:42:54 -06:00 committed by Ben Rog-Wilhelm
parent 411859d99f
commit 4a26beaebd
3 changed files with 1322 additions and 141 deletions

View file

@ -1,6 +1,6 @@
################################################################### ###################################################################
# Base container # Base container
FROM python:3.11 AS base FROM python:3.10 AS base
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive

1459
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
license = "AGPL" license = "AGPL"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.11" python = "^3.10" # updating to 3.11 causes instability; see https://github.com/themotte/rDrama/issues/446
beautifulsoup4 = "*" beautifulsoup4 = "*"
bleach = "4.1.0" bleach = "4.1.0"
Flask = "*" Flask = "*"