From 2616caa8589e008d8f80dc9fe3aa5f3869978784 Mon Sep 17 00:00:00 2001 From: Honnix Date: Fri, 11 Apr 2025 14:46:44 +0200 Subject: [PATCH] fix: Update lower bound of required python to 3.9 (#7628) * fix: Update lower bound of required python to 3.9 * Ignore UP006 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f733415bd..804f77dc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "notebook" description = "Jupyter Notebook - A web-based notebook environment for interactive computing" readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.8" +requires-python = ">=3.9" authors = [ { name = "Jupyter Development Team", email = "jupyter@googlegroups.com" }, ] @@ -267,6 +267,7 @@ ignore = [ "PLR", # Design related pylint codes "C408", "C416", # Unnecessary `dict` call (rewrite as a literal) "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar` + "UP006", # non-pep585-annotation ] [tool.ruff.lint.per-file-ignores]