Update check-candidacy.py with Newton dates and tag

Change-Id: Ida91b757e7c5840634651359e9e902557eba456e
This commit is contained in:
Tony Breeds 2016-03-11 12:51:02 +11:00
parent 7b3f1e73ef
commit f894edb16d
1 changed files with 5 additions and 4 deletions

View File

@ -7,12 +7,13 @@ import urllib
import re
import datetime
DATE_MIN = '2014-09-18'
DATE_MAX = '2015-09-18'
DATE_MIN = '2015-03-04'
DATE_MAX = '2016-01-03'
BASE_URL = 'https://git.openstack.org/cgit'
PROJECTS_URL = ('%s/openstack/governance/plain/reference/projects.yaml' %
(BASE_URL))
PROJECTS_TAG = 'march-2016-elections'
PROJECTS_URL = ('%s/openstack/governance/plain/reference/projects.yaml?%s' %
(BASE_URL, PROJECTS_TAG))
date_min = datetime.datetime.strptime(DATE_MIN, '%Y-%m-%d').strftime('%s')
date_max = datetime.datetime.strptime(DATE_MAX, '%Y-%m-%d').strftime('%s')