Skip to content

Commit 2616caa

Browse files
authored
fix: Update lower bound of required python to 3.9 (#7628)
* fix: Update lower bound of required python to 3.9 * Ignore UP006
1 parent f0bdc47 commit 2616caa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "notebook"
77
description = "Jupyter Notebook - A web-based notebook environment for interactive computing"
88
readme = "README.md"
99
license = { file = "LICENSE" }
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
authors = [
1212
{ name = "Jupyter Development Team", email = "[email protected]" },
1313
]
@@ -267,6 +267,7 @@ ignore = [
267267
"PLR", # Design related pylint codes
268268
"C408", "C416", # Unnecessary `dict` call (rewrite as a literal)
269269
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
270+
"UP006", # non-pep585-annotation
270271
]
271272

272273
[tool.ruff.lint.per-file-ignores]

0 commit comments

Comments
 (0)