Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
znicholls committed Sep 30, 2019
1 parent 770dff6 commit f667f85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@

# Next Release

- [#268](https://github.com/IAMconsortium/pyam/pull/268) Update `aggregate_region` so it can find variables below sub-cateogories too
- [#270](https://github.com/IAMconsortium/pyam/pull/270) Include variables with zeros in `stack_plot` (see [#266](https://github.com/IAMconsortium/pyam/issues/266))
- [#268](https://github.com/IAMconsortium/pyam/pull/268) Update `aggregate_region` so it can find variables below sub-categories too
- [#261](https://github.com/IAMconsortium/pyam/pull/261) Add a check that `keep` in `filter()` is a boolean
- [#254](https://github.com/IAMconsortium/pyam/pull/254) Hotfix for aggregating missing regions and filtering empty dataframes
- [#243](https://github.com/IAMconsortium/pyam/pull/243) Update `pyam.iiasa.Connection` to support all public and private database connections. DEPRECATED: the argument 'iamc15' has been deprecated in favor of names as queryable directly from the REST API.
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 f667f85

Please sign in to comment.