From d217552224b8e5804f7f93dc0d2534670acf259c Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson Date: Sat, 4 Feb 2023 13:17:27 +0100 Subject: [PATCH] Increase timeout to GitHub API --- examples/lines_bars_and_markers/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/lines_bars_and_markers/timeline.py b/examples/lines_bars_and_markers/timeline.py index 2c8507922f7f..c50b06387fc8 100644 --- a/examples/lines_bars_and_markers/timeline.py +++ b/examples/lines_bars_and_markers/timeline.py @@ -23,7 +23,7 @@ url = 'https://api.github.com/repos/matplotlib/matplotlib/releases' url += '?per_page=100' - data = json.loads(urllib.request.urlopen(url, timeout=.4).read().decode()) + data = json.loads(urllib.request.urlopen(url, timeout=1).read().decode()) dates = [] names = []