Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release candidate 3.0.0 #903

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading