mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-01 03:00:13 -04:00
Allow to get up to 100 issues at once
This commit is contained in:
@@ -13,7 +13,7 @@ def generate(milestone):
|
||||
number = title_to_number_map[milestone]
|
||||
|
||||
# Get the issues associated with the milestone
|
||||
issues = json.loads(urllib.urlopen('https://api.github.com/repos/CoolProp/CoolProp/issues?state=all&milestone='+str(number)).read())
|
||||
issues = json.loads(urllib.urlopen('https://api.github.com/repos/CoolProp/CoolProp/issues?state=all&per_page=100&milestone='+str(number)).read())
|
||||
|
||||
# Make sure all issues are closed in this milestone
|
||||
for issue in issues:
|
||||
|
||||
Reference in New Issue
Block a user