possibly related to #940
Using plotnine version '0.15.0a2.post3+g2cdc487f'
import pandas as pd
from plotnine import *
df = pd.DataFrame({"x": [1, 2, 3], "fontstyle": ["normal", "italic", "oblique"]})
(ggplot(df, aes(1, "x")) + geom_text(aes(label="fontstyle", fontstyle="fontstyle")))
