Open yurivict opened 2 months ago
From the error it seems related to general matplotlib configuration, not ArviZ specific. Can you run this other test in the same env?
import matplotlib.pyplot as plt
def test_create_subplots():
fig, ax = plt.subplots(2, 2)
assert ax.shape == (2, 2)
def test_plot():
fig, ax = plt.subplots()
lines = ax.plot([0, 1], [0, 1])
assert len(lines) == 1
Describe the bug
Version: 0.19.0 Python 3.11 FreeBSD 14.1