Fix pyparsing deprecation flood without touching matplotlib - #748
Merged
Conversation
Reverts the matplotlib >= 3.11 requirement: hosted notebook runtimes (Colab) preimport matplotlib at kernel start, so a mid-session pip upgrade leaves a broken half-old, half-new install (new mpl_toolkits.axes_grid1 loaded lazily against the old in-memory matplotlib._api). Instead, rebind pyparsing's deprecated camelCase compatibility aliases (parseString / resetCache, including the parseAll argument) to call the snake_case API directly with the renamed arguments. matplotlib < 3.11 mathtext calls those aliases once per rendered math label, which floods plotting output under pyparsing >= 3.3; with the rebind the deprecated code paths are never executed, in any session, with no install changes. Verified the rebound aliases give identical parse results and exceptions, emit no warnings, and are skipped on matplotlib >= 3.11. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
smribet
approved these changes
Aug 1, 2026
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.
Reverts the matplotlib >= 3.11 requirement: hosted notebook runtimes
(Colab) preimport matplotlib at kernel start, so a mid-session pip
upgrade leaves a broken half-old, half-new install (new
mpl_toolkits.axes_grid1 loaded lazily against the old in-memory
matplotlib._api).
Instead, rebind pyparsing's deprecated camelCase compatibility aliases
(parseString / resetCache, including the parseAll argument) to call the
snake_case API directly with the renamed arguments. matplotlib < 3.11
mathtext calls those aliases once per rendered math label, which floods
plotting output under pyparsing >= 3.3; with the rebind the deprecated
code paths are never executed, in any session, with no install changes.
Verified the rebound aliases give identical parse results and
exceptions, emit no warnings, and are skipped on matplotlib >= 3.11.
Co-Authored-By: Claude Fable 5 noreply@anthropic.com