File tree 5 files changed +39
-4
lines changed
5 files changed +39
-4
lines changed Original file line number Diff line number Diff line change 7
7
` skbase ` provides base classes for creating scikit-learn-like parametric objects,
8
8
along with tools to make it easier to build your own packages that follow these design patterns.
9
9
10
- :rocket : Version 0.5.2 is now available. Checkout our
10
+ :rocket : Version 0.6.0 is now available. Check out our
11
11
[ release notes] ( https://skbase.readthedocs.io/en/latest/changelog.html ) .
12
12
13
13
| Overview | |
Original file line number Diff line number Diff line change 5
5
"url" : " https://skbase.readthedocs.io/en/latest/"
6
6
},
7
7
{
8
- "name" : " 0.5.2 (stable)" ,
8
+ "name" : " 0.6.0 (stable)" ,
9
+ "version" : " stable" ,
10
+ "url" : " https://skbase.readthedocs.io/en/v0.6.0/"
11
+ },
12
+ {
13
+ "name" : " 0.5.2" ,
9
14
"version" : " stable" ,
10
15
"url" : " https://skbase.readthedocs.io/en/v0.5.2/"
11
16
},
Original file line number Diff line number Diff line change @@ -14,6 +14,36 @@ You can also subscribe to ``skbase``'s
14
14
15
15
For planned changes and upcoming releases, see our :ref: `roadmap `.
16
16
17
+ [0.6.0] - 2023-10-05
18
+ ====================
19
+
20
+ Maintenance release at python 3.12 release.
21
+
22
+ Adds support for python 3.12.
23
+
24
+ Dependency changes
25
+ ------------------
26
+
27
+ * ``skbase `` now supports python 3.12.
28
+
29
+ Deprecations and removals
30
+ -------------------------
31
+
32
+ * the ``deep_equals `` utility has moved to ``skbase.utils.deep_equals ``.
33
+ The old location in ``skbase.testing.utils.deep_equals `` has now been removed.
34
+
35
+ Contents
36
+ --------
37
+
38
+ * [MNT] address deprecation of ``load_module `` in ``python 3.12 ``
39
+ (:pr: `190 `) :user: `fkiraly `
40
+ * [MNT] simplify test CI and remove ``conda `` (:pr: `224 `) :user: `fkiraly `
41
+ * [MNT] update dependency versions in ``doc `` dependency set and set upper bounds
42
+ (:pr: `226 `, :pr: `227 `) :user: `fkiraly `
43
+ * [MNT] update ``python `` version to 3.12 (:pr: `221 `) :user: `fkiraly `
44
+ * [MNT] 0.6.0 deprecation actions (:pr: `225 `) :user: `fkiraly `
45
+
46
+
17
47
[0.5.2] - 2023-10-03
18
48
====================
19
49
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " scikit-base"
3
- version = " 0.5.2 "
3
+ version = " 0.6.0 "
4
4
description = " Base classes for sklearn-like parametric objects"
5
5
authors = [
6
6
{
name =
" sktime developers" ,
email =
" [email protected] " },
Original file line number Diff line number Diff line change 6
6
The included functionality makes it easy to re-use scikit-learn and
7
7
sktime design principles in your project.
8
8
"""
9
- __version__ : str = "0.5.2 "
9
+ __version__ : str = "0.6.0 "
You can’t perform that action at this time.
0 commit comments