We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello!
It seems the 'operatorPrecendence' that was deprecated is not available anymore and produces:
ImportError: cannot import name 'operatorPrecedence' from 'pyparsing'
Maybe the requirements of should be updated to "pyparsing<3" or fixed.
From pyparsing code:
operatorPrecedence = infixNotation """(Deprecated) Former name of :class:`infixNotation`, will be dropped in a future release."""
https://github.com/pyparsing/pyparsing/blob/pyparsing_2.4.7/pyparsing.py
The text was updated successfully, but these errors were encountered:
As a workaround you can pin the version of pyparsing to a earlier version:
pyparsing==2.4.7
Sorry, something went wrong.
No branches or pull requests
Hello!
It seems the 'operatorPrecendence' that was deprecated is not available anymore and produces:
Maybe the requirements of should be updated to "pyparsing<3" or fixed.
From pyparsing code:
https://github.com/pyparsing/pyparsing/blob/pyparsing_2.4.7/pyparsing.py
The text was updated successfully, but these errors were encountered: