Skip to content

Commit c241232

Browse files
committed
chore: bump pylint to avoid issue
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 498fe89 commit c241232

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def pylint(session: nox.Session) -> None:
4141
"""
4242
# This needs to be installed into the package environment, and is slower
4343
# than a pre-commit check
44-
session.install("-e.[dev,test,test-meta]", "pylint==3.2.*")
44+
session.install("-e.[dev,test,test-meta]", "pylint==3.3.*")
4545
session.run("pylint", "--version")
4646
session.run("pylint", "scikit_build_core", *session.posargs)
4747

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ messages_control.disable = [
206206
"broad-except",
207207
"unused-argument", # Handled by Ruff
208208
"redefined-builtin", # ExceptionGroup is a builtin
209+
"using-exception-groups-in-unsupported-version", # We are using a backport
209210
]
210211

211212

0 commit comments

Comments
 (0)