Skip to content

Commit

Permalink
Remove questions from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Jun 2, 2022
1 parent 2a9a81e commit 278a4f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _setup/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def run(self):
issues = issues.sort_values(by=["number"], ascending=[False])
wontfix = issues.labels.apply(lambda x: 'wontfix' in x)
invalid = issues.labels.apply(lambda x: 'invalid' in x)
issues = issues[~wontfix & ~invalid]
question = issues.labels.apply(lambda x: 'question' in x)
issues = issues[~wontfix & ~invalid & ~question]

# fix the dates to reflect dates from original Trac issue tracker
trac = (r" _Imported from trac ticket .*, "
Expand Down

0 comments on commit 278a4f4

Please sign in to comment.