After including sympy into PyCBC, for some reason, matplotlib always wants to render the fonts (when there are special characters) in the pictures by TeX, rather than using its default mathtext, so I use pylab.rcParams.update({"text.usetex": False}) to force it use its own mathtext. My PR fails in tutorial tests due to this.
After including
sympy
into PyCBC, for some reason, matplotlib always wants to render the fonts (when there are special characters) in the pictures byTeX
, rather than using its defaultmathtext
, so I usepylab.rcParams.update({"text.usetex": False})
to force it use its ownmathtext
. My PR fails in tutorial tests due to this.