Skip to content

Commit

Permalink
Release candidate 3.0.0 (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann authored Dec 19, 2024
1 parent dc2e3a4 commit 44888a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Next release
# Release v3.0.0

The next release must be bumped to v3.0.0.
## Highlights

- Implement reading and writing of **netcdf** files
- Remove automated sorting of timeseries data for performance improvement
- Add support Python 3.13

## Individual updates

- [#901](https://github.com/IAMconsortium/pyam/pull/901) Add support for Python 3.13
- [#899](https://github.com/IAMconsortium/pyam/pull/899) Add `to_netcdf()` method
Expand Down
2 changes: 1 addition & 1 deletion pyam/iiasa.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def query(self, default_only=True, meta=True, **kwargs):


def _new_default_api(kwargs):
# TODO: argument `default` is deprecated, remove this warning for release >= 3.0
# TODO: argument `default` is deprecated, remove this warning for release >= 3.1
raise DeprecationWarning(
"The argument `default` is deprecated, use `default_only` instead."
)
Expand Down
2 changes: 1 addition & 1 deletion pyam/str.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def concat_with_pipe(x, *args, cols=None):
"""Concatenate a list or pandas.Series using ``|``, drop None or numpy.nan"""
if args:
# Guard against legacy-errors when adding `*args` (#778)
# TODO: deprecated, remove for release >= 3.0
# TODO: deprecated, remove for release >= 3.1
for i in args:
if is_list_like(i):
raise DeprecationWarning(f"Please use `cols={i}`.")
Expand Down

0 comments on commit 44888a2

Please sign in to comment.