From 70429b4841ca4add2d06ed1bc4f1a394659d272e Mon Sep 17 00:00:00 2001 From: Brady Fomegne Date: Mon, 5 May 2025 03:59:58 +0100 Subject: [PATCH 1/2] chore: fix the minimal python version supported --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18c3662..4cf55c2 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Place can be installed via Pip or Docker. To start, clone the repo to your local ### 🧰 Prerequisites -- **Python 3.13+** ([Download](https://python.org)) +- **Python 3.11+** ([Download](https://python.org)) - **Docker** (Optional) ([Install Docker](https://docs.docker.com/get-started/get-docker/)) - **UV** (Optional, for fast Python package management) ([Install UV](https://docs.astral.sh/uv/getting-started/installation/)) From 09789c306e6b7f203bfe3866e9ca280b7b3ab85b Mon Sep 17 00:00:00 2001 From: Brady Fomegne Date: Mon, 5 May 2025 04:01:50 +0100 Subject: [PATCH 2/2] downgrade min python version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fc2d910..19ea8ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "place" version = "0.1.0" description = "Add your description here" readme = "README.md" -requires-python = ">=3.13" +requires-python = ">=3.11" dependencies = [ "crispy-bootstrap5~=2025.4", "django~=5.2",