Skip to content

Commit

Permalink
fix version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-held committed May 20, 2024
1 parent 77eef24 commit 9a108ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/visualize/test_visualize_plot_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ def test_ranking(tmp_path):


@pytest.mark.skipif(
sys.version_info == (3, 8), reason="legend positioning, see cabinetry#476"
sys.version_info <= (3, 9),
reason="legend positioning in Python 3.8 with older matplotlib, see cabinetry#476",
)
def test_scan(tmp_path):
fname = tmp_path / "fig.png"
Expand Down

0 comments on commit 9a108ae

Please sign in to comment.