filter pyparsing deprecation warnings instead of pinning#355
Merged
yarikoptic merged 2 commits intocon:mainfrom Jan 5, 2026
Merged
filter pyparsing deprecation warnings instead of pinning#355yarikoptic merged 2 commits intocon:mainfrom
yarikoptic merged 2 commits intocon:mainfrom
Conversation
Replace the pyparsing version pin with a filterwarnings ignore for matplotlib's deprecated pyparsing API usage. This approach allows detecting new issues from dependency updates while suppressing known-acceptable warnings. Supersedes the approach in con#353. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #355 +/- ##
=======================================
Coverage 90.98% 90.98%
=======================================
Files 8 8
Lines 1021 1021
Branches 135 135
=======================================
Hits 929 929
Misses 70 70
Partials 22 22 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR replaces a pyparsing version constraint with a filterwarnings configuration to suppress deprecation warnings from matplotlib's use of deprecated pyparsing APIs. The approach allows the project to use newer pyparsing versions while silencing known third-party deprecation warnings.
Key changes:
- Removed pyparsing version pin (
pyparsing>=3.0,<3.3) from theoldestdepstest environment - Added a filterwarnings ignore rule for matplotlib deprecation warnings
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Only ignore the specific 'enablePackrat' deprecation from matplotlib._mathtext, rather than all deprecation warnings from all matplotlib modules. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
yarikoptic
approved these changes
Jan 5, 2026
Member
|
green is good! |
|
🚀 PR was released in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #354
Replace the pyparsing version pin with a filterwarnings ignore for matplotlib's deprecated pyparsing API usage. This approach allows detecting new issues from dependency updates while suppressing known-acceptable warnings.
Supersedes the approach in #353.