Skip to content

Commit

Permalink
tweak for 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parrt committed Jul 13, 2023
1 parent 55d74b0 commit a3d02a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ To push the `dtreeviz` library to your local egg cache (force updates) during de
python setup.py install -f
```

E.g., on Terence's box, it add `/Users/parrt/anaconda3/lib/python3.6/site-packages/dtreeviz-2.2.1-py3.6.egg`.
E.g., on Terence's box, it add `/Users/parrt/anaconda3/lib/python3.6/site-packages/dtreeviz-2.2.2-py3.6.egg`.

## Feedback

Expand Down
5 changes: 3 additions & 2 deletions scripts/github_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@
print("## Issues fixed")
for x in issues:
labels = [l.name for l in x.labels]
if x.pull_request is None and not ("type:improvement" in labels or "type:feature" in labels):
if x.pull_request is None and not ("bug" in labels):
print("* [%s](%s) (%s)" % (x.title, x.html_url, ", ".join([l.name for l in x.labels])))

# dump improvements closed for this release (issues or pulls)
print()
print("## Improvements, features")
for x in issues:
labels = [l.name for l in x.labels]
if ("enhancement" in labels):
print(labels)
if ("enhancement" in labels or "clean up" in labels):
print("* [%s](%s) (%s)" % (x.title, x.html_url, ", ".join(labels)))

# dump contributors
Expand Down

0 comments on commit a3d02a5

Please sign in to comment.