File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1515 strategy :
1616 fail-fast : false
1717 matrix :
18- python-version : ["3.8 ", "3.9", "3.10 "]
18+ python-version : ["3.10 ", "3.11 "]
1919
2020 steps :
2121 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ def test_xlogspace(setup_mpl):
6161
6262@pytest .mark .mpl_image_compare
6363def test_xylogspace (setup_mpl ):
64- x = np .geomspace (1e- 1 , 1e1 )
64+ x = np .geomspace (0. 1 , 1e1 )
6565 K = np .arange (- 5 , 5 , 2 )
6666
6767 for k in K :
@@ -73,6 +73,9 @@ def test_xylogspace(setup_mpl):
7373 plt .xlabel ("$x$" )
7474 plt .ylabel ("$f(x)$" )
7575 plt .ylim (1e-6 , 1e6 )
76+ # We need to fix the xlims to prevent funky xlims
77+ # see PR #115
78+ plt .xlim (0.1 / 1.2 , 1e1 * 1.2 )
7679 return plt .gcf ()
7780
7881
You can’t perform that action at this time.
0 commit comments