From bb356598c251243f5f35c9a6b415c6444953b0ef Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Tue, 10 Dec 2024 20:23:17 +0100 Subject: [PATCH] OLS-1277: basic support for Python 3.12 Signed-off-by: Pavel Tisnovsky --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 062b96c3..52dc0f08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ lint.extend-select = ["D401"] lint.ignore = [] +# always generate Python 3.11-compatible code. target-version = "py311" lint.pydocstyle.convention = "google" line-length = 100 @@ -131,7 +132,7 @@ dependencies = [ "virtualenv==20.28.0", "msgpack==1.1.0", ] -requires-python = "==3.11.*" +requires-python = ">=3.11.1,<=3.12.8" readme = "README.md" license = {file = "LICENSE"}