Skip to content

Commit

Permalink
Merge branch 'main' into dummypolarsproba
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-fong authored Sep 8, 2024
2 parents 93b9913 + 31da07d commit bb3cfa9
Show file tree
Hide file tree
Showing 19 changed files with 1,315 additions and 91 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a href="https://skpro.readthedocs.io/en/latest"><img src="https://github.com/sktime/skpro/blob/main/docs/source/images/skpro-banner.png" width="500" align="right" /></a>

:rocket: **Version 2.5.0 out now!** [Read the release notes here.](https://skpro.readthedocs.io/en/latest/changelog.html).
:rocket: **Version 2.5.1 out now!** [Read the release notes here.](https://skpro.readthedocs.io/en/latest/changelog.html).

`skpro` is a library for supervised probabilistic prediction in python.
It provides `scikit-learn`-like, `scikit-base` compatible interfaces to:
Expand Down
7 changes: 6 additions & 1 deletion docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"url": "https://skpro.readthedocs.io/en/latest/"
},
{
"name": "2.5.0 (stable)",
"name": "2.5.1 (stable)",
"version": "stable",
"url": "https://skpro.readthedocs.io/en/v2.5.1/"
},
{
"name": "2.5.0",
"version": "stable",
"url": "https://skpro.readthedocs.io/en/v2.5.0/"
},
Expand Down
38 changes: 38 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,44 @@ For planned changes and upcoming releases, see roadmap in the
`issue tracker <https://github.com/sktime/skpro/issues>`_.


[2.5.1] - 2024-09-07
====================

Minor feature and bugfix release.

Dependency changes
~~~~~~~~~~~~~~~~~~

* ``polars`` (data container and parallelization back-end) bounds have been updated to ``<1.7.0``

Enhancements
~~~~~~~~~~~~

* [ENH] Polars adapter enhancements (:pr:`449`) :user:`julian-fong`

Maintenance
~~~~~~~~~~~

* [MNT] [Dependabot](deps): Update polars requirement from ``<1.5.0`` to ``<1.7.0`` (:pr:`456`) :user:`dependabot[bot]`

Fixes
~~~~~

* [BUG] changelog utility: fix termination condition to retrieve merged PR (:pr:`448`) :user:`fkiraly`
* [BUG] Update ``skpro.utils.git_diff`` to fix issue with encoding (:pr:`452`) :user:`julian-fong`
* [BUG] fix variance bug in ``DummyProbaRegressor`` (:pr:`455`) :user:`fkiraly`

Documentation
~~~~~~~~~~~~~

* [DOC] minor updates to ``README.md`` (:pr:`451`) :user:`fkiraly`

Contributors
~~~~~~~~~~~~

:user:`fkiraly`,
:user:`julian-fong`

[2.5.0] - 2024-08-02
====================

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "skpro"
version = "2.5.0"
version = "2.5.1"
description = "A unified framework for probability distributions and probabilistic supervised regression"
authors = [
{name = "skpro developers", email = "[email protected]"},
Expand Down Expand Up @@ -38,10 +38,10 @@ classifiers = [
]
requires-python = ">=3.9,<3.13"
dependencies = [
"numpy>=1.21.0,<2.1",
"numpy>=1.21.0,<2.2",
"pandas>=1.1.0,<2.3.0",
"packaging",
"scikit-base>=0.6.1,<0.9.0",
"scikit-base>=0.6.1,<0.10.0",
"scikit-learn>=0.24.0,<1.6.0",
"scipy<2.0.0,>=1.2.0",
]
Expand Down
2 changes: 1 addition & 1 deletion skpro/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""skpro."""

__version__ = "2.5.0"
__version__ = "2.5.1"

__all__ = ["show_versions"]

Expand Down
5 changes: 5 additions & 0 deletions skpro/datatypes/_base/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Base module for datatypes."""

from skpro.datatypes._base._base import BaseConverter, BaseDatatype

__all__ = ["BaseConverter", "BaseDatatype"]
Loading

0 comments on commit bb3cfa9

Please sign in to comment.