Skip to content

Commit baa0537

Browse files
committed
Just use on 3.8, not 3.7
1 parent be97f84 commit baa0537

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@ def _check_dependencies():
168168
'thumbnail_size': (320, 224),
169169
'compress_images': ('thumbnails', 'images'),
170170
'matplotlib_animations': True,
171-
'image_srcset': ["2x"],
171+
# 3.7 CI doc build should not use hidpi images during the testing phase
172+
'image_srcset': [] if sys.version_info[:2] == (3, 7) else ["2x"],
172173
}
173174

174175
plot_gallery = 'True'

0 commit comments

Comments
 (0)