Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_language_version:
python: python3.12
python: python3.14

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = { file = "LICENSE" }
readme = "README.md"
homepage = "https://mottle.it"
repository = "https://github.com/Ch00k/mottle"
requires-python = ">=3.12,<3.13"
requires-python = ">=3.14"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep Python requirement compatible with Docker base

The project now declares requires-python = ">=3.14", but the Dockerfile still builds on python3.12 for both builder and runtime (Dockerfile:1,19). That combination causes uv sync/pip to reject the project during image builds, so the container will fail to build in current environments. Unless the base images are updated to 3.14, this requirement bump breaks deployments.

Useful? React with 👍 / 👎.


dependencies = [
"django==5.2.8",
Expand All @@ -30,7 +30,7 @@ dependencies = [
"json-log-formatter==1.1.1",
"daphne==4.2.1",
"django-hosts==7.0.0",
"tekore==6.0.0",
"tekore==6.1.0",
"croniter==6.0.0",
]

Expand All @@ -46,7 +46,7 @@ dev = [
"pytest-cov>=7.0.0",
"minify-html>=0.18.1",
]
debug = ["ipython==9.7.0", "pdbpp==0.11.7"]
debug = ["ipython==9.8.0", "pdbpp==0.11.7"]

[tool.ruff]
line-length = 120
Expand Down
Loading
Loading