There was an error while loading. Please reload this page.
2 parents 5d2e97e + ec497ae commit 1127632Copy full SHA for 1127632
3 files changed
lib/matplotlib/_mathtext.py
@@ -15,7 +15,7 @@
15
from pyparsing import (
16
Combine, Empty, FollowedBy, Forward, Group, Literal, oneOf, OneOrMore,
17
Optional, ParseBaseException, ParseFatalException, ParserElement,
18
- ParseResults, QuotedString, Regex, StringEnd, Suppress, ZeroOrMore)
+ ParseResults, QuotedString, Regex, StringEnd, Suppress, White, ZeroOrMore)
19
20
import matplotlib as mpl
21
from . import _api, cbook
@@ -2060,6 +2060,7 @@ def __init__(self):
2060
p.accent <<= Group(
2061
Suppress(p.bslash)
2062
+ oneOf([*self._accent_map, *self._wide_accents])
2063
+ + Suppress(Optional(White()))
2064
- p.placeable
2065
)
2066
requirements/doc/doc-requirements.txt
@@ -13,7 +13,6 @@ ipython
13
ipywidgets
14
numpydoc>=0.8
packaging>=20
-pyparsing<3.0.0
mpl-sphinx-theme
sphinxcontrib-svg2pdfconverter>=1.1.0
sphinx-gallery>=0.10
requirements/testing/all.txt
@@ -2,7 +2,6 @@
2
3
certifi
4
coverage
5
6
pytest!=4.6.0,!=5.4.0
7
pytest-cov
8
pytest-rerunfailures
0 commit comments