fix: Update lower bound of required python to 3.9 (#7628)

* fix: Update lower bound of required python to 3.9

* Ignore UP006
Honnix 1 year ago committed by GitHub
parent f0bdc4756d
commit 2616caa858
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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]

Loading…
Cancel
Save