File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,13 @@ jobs:
225
225
fi
226
226
fi
227
227
228
+ cat <<EOT >> mplsetup.cfg
229
+ [rc_options]
230
+ Agg
231
+ EOT
232
+
233
+ cat mplsetup.cfg
234
+
228
235
# All dependencies must have been pre-installed, so that the minver
229
236
# constraints are held.
230
237
python -m pip install --no-deps -e .
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ def update_matplotlibrc(path):
205
205
idx for idx , line in enumerate (template_lines )
206
206
if "#backend:" in line ]
207
207
template_lines [backend_line_idx ] = (
208
- "#backend: {}" .format (setupext .options ["backend" ])
208
+ "#backend: {}\n " .format (setupext .options ["backend" ])
209
209
if setupext .options ["backend" ]
210
210
else "##backend: Agg" )
211
211
path .write_text ("" .join (template_lines ))
You can’t perform that action at this time.
0 commit comments