Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Oct 19, 2019
1 parent eed425e commit d5e5633
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

# Next Release

- [#270](https://github.com/IAMconsortium/pyam/pull/270) Include variables with zeros in `stack_plot` (see [#266](https://github.com/IAMconsortium/pyam/issues/266))
- [#269](https://github.com/IAMconsortium/pyam/pull/269) Ensure append doesn't accidentally swap indexes
- [#268](https://github.com/IAMconsortium/pyam/pull/268) Update `aggregate_region` so it can find variables below sub-cateogories too
- [#267](https://github.com/IAMconsortium/pyam/pull/267) Make clear error message if variable-region pair is missing when `check_aggregate_region` is called
Expand Down
3 changes: 2 additions & 1 deletion tests/test_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,8 @@ def test_stack_plot_negative_emissions_kwargs_custom_total(plot_stack_plot_df):

@pytest.mark.mpl_image_compare(**MPL_KWARGS)
def test_stack_plot_missing_zero_issue_266(plot_stack_plot_df):
df = pyam.IamDataFrame(pd.DataFrame([
df = pyam.IamDataFrame(pd.DataFrame(
[
['a', 1, 2, 3, 4],
['b', 0, 1, 2, 3],
['c', -1, 1, -1, -1],
Expand Down

0 comments on commit d5e5633

Please sign in to comment.