From 4a29b61c5ab3468707e3dabba314c2898ad39eb3 Mon Sep 17 00:00:00 2001 From: Martin Medler Date: Mon, 25 Dec 2023 11:01:24 +0100 Subject: [PATCH] Update minimum Python version for development to 3.9 This does not change the minimum Python version DWYU supports in production. This only raises the minimum version required to be able to develop DWYU due to pre-commit deprecating Python 3.8 support early. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6010d6ee..12de622a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ description = "" authors = ["Martin Medler"] [tool.poetry.dependencies] -python = "^3.8.1" +python = "^3.9.0" [tool.poetry.dev-dependencies] pre-commit = "^3.5.0"