forked from SWE-bench/SWE-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_versions_matplotlib.py
57 lines (47 loc) · 1.65 KB
/
get_versions_matplotlib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import json
import os
import re
import requests
import sys
from datetime import datetime
sys.path.append("../../harness")
from utils import get_instances
PATH_TASKS_MATPLOTLIB = "<path to matplotlib task instances>"
# Get raw matplotlib dataset
data_tasks = get_instances(PATH_TASKS_MATPLOTLIB)
# Get version to date from matplotlib home page
resp = requests.get("https://matplotlib.org/stable/users/release_notes#past-versions")
pattern = r'<a class="reference internal" href="prev_whats_new/whats_new_(.*).html">What\'s new in Matplotlib (.*)</a>'
matches = re.findall(pattern, resp.text)
matches = list(set(matches))
# Get (date, version) pairs
date_format = "%b %d, %Y"
keep_major_minor = lambda x, sep: ".".join(x.strip().split(sep)[:2])
times = []
for match in matches:
version, s = match[0], match[1]
if "(" not in s:
continue
version = keep_major_minor(version, ".")
date_string = s[s.find("(") + 1 : s.find(")")]
date_obj = datetime.strptime(date_string, date_format)
times.append((date_obj.strftime("%Y-%m-%d"), version))
times = sorted(times, key=lambda x: x[0])[::-1]
for task in data_tasks:
created_at = task["created_at"].split("T")[0]
for t in times:
if t[0] < created_at:
task["version"] = t[1]
break
# Construct map of versions to task instances
map_v_to_t = {}
for t in data_tasks:
if t["version"] not in map_v_to_t:
map_v_to_t[t["version"]] = []
map_v_to_t[t["version"]].append(t)
# Save matplotlib versioned data to repository
with open(
os.path.join(PATH_TASKS_MATPLOTLIB, "matplotlib-task-instances_versions.json"),
"w",
) as f:
json.dump(data_tasks, fp=f)