Revert "Support stable requirements"

This reverts commit c01b96e6da.

Rather than change project-requirements-change.py to support
old requirements, we'll backport changes to requirements.

Change-Id: Id6129e19988cad882629cff6c251bbaa81997d5c
This commit is contained in:
Brant Knudson 2016-02-10 19:59:07 +00:00
parent c01b96e6da
commit b51894c602

View File

@ -228,7 +228,7 @@ def main():
if reqs == global_reqs[name]:
continue
for req in reqs:
if hasattr(req, 'extras') and req.extras:
if req.extras:
for extra in req.extras:
counts[extra] = counts.get(extra, 0) + 1
else: