From 82b1628872cd3aff5a4287dcd2f5cf1db8eab6e4 Mon Sep 17 00:00:00 2001 From: Nigel Date: Fri, 29 Dec 2023 15:19:23 +0000 Subject: [PATCH] Upgrade python version to 3.11 As per discussion in #57, this is a compromise between using 3.12 and not causing undue hassle for Linux users. Also, while here, update black version to 23.12, which is the last release using the 2023 stable style. Fixes #57 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7fe864b4..e333ec77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,11 +7,11 @@ readme = "README.md" packages = [{include = "guiguts", from = "src"}] [tool.poetry.dependencies] -python = "^3.10" +python = "^3.11" Pillow = "^10.1" [tool.poetry.group.dev.dependencies] -black = "^23.11" +black = "^23.12" flake8 = "^6.1" Sphinx = "^7.2" pytest = "^7.4"