Skip to content

Commit

Permalink
add missing 'unmaintaned' status (#427)
Browse files Browse the repository at this point in the history
* rep 141 defines developed, maintaned, unmaintaned and end-of-life

* shorten comments to pass pep8 test
  • Loading branch information
k-okada authored and wjwwood committed Jun 14, 2017
1 parent eddcc35 commit 9ea33a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bloom/commands/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,10 +547,11 @@ def get_repository_info_from_user(url_type, defaults=None):
info("Valid maintenance statuses:")
info("- developed: active development is in progress")
info("- maintained: no new development, but bug fixes and pull requests are addressed")
info("- unmaintained: looking for new maintainer, bug fixes and pull requests will not be addressed")
info("- end-of-life: should not be used, will disappear at some point")
while True:
status = safe_input('Status: ')
if status in ['developed', 'maintained', 'end-of-life']:
if status in ['developed', 'maintained', 'unmaintained', 'end-of-life']:
break
error("'{0}' is not a valid status.".format(status))
if not maybe_continue(msg='Try again'):
Expand Down

0 comments on commit 9ea33a7

Please sign in to comment.