Skip to content

Commit 766da11

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

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
@@ -207,6 +207,7 @@ messages_control.disable = [
207207
"broad-except",
208208
"unused-argument", # Handled by Ruff
209209
"redefined-builtin", # ExceptionGroup is a builtin
210+
"using-exception-groups-in-unsupported-version", # We are using a backport
210211
]
211212

212213

0 commit comments

Comments
 (0)