Skip to content

Commit b97e190

Browse files
fix: use portable warning filter for matplotlib deprecation warnings
The CI environment uses a newer pyparsing that doesn't have PyparsingDeprecationWarning. Use a message-based DeprecationWarning filter scoped to matplotlib instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2ae1f90 commit b97e190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ markers = [
234234
"backend_agnostic: marks tests that should pass on all backends (auto-marked for parameterized tests)",
235235
]
236236
filterwarnings = [
237-
"ignore::pyparsing.exceptions.PyparsingDeprecationWarning",
237+
"ignore:.*deprecated.*:DeprecationWarning:matplotlib",
238238
]
239239

240240

0 commit comments

Comments
 (0)