scikit-base 0.10.1__py3-none-any.whl → 0.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/METADATA +8 -9
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/RECORD +14 -11
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/WHEEL +1 -1
- skbase/__init__.py +1 -1
- skbase/_exceptions.py +2 -3
- skbase/base/_base.py +442 -259
- skbase/base/_clone_base.py +129 -0
- skbase/base/_clone_plugins.py +215 -0
- skbase/tests/conftest.py +17 -4
- skbase/tests/test_base.py +19 -2
- skbase/utils/dependencies/_import.py +28 -0
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/LICENSE +0 -0
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/top_level.txt +0 -0
- {scikit_base-0.10.1.dist-info → scikit_base-0.12.0.dist-info}/zip-safe +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: scikit-base
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.12.0
|
4
4
|
Summary: Base classes for sklearn-like parametric objects
|
5
5
|
Author-email: sktime developers <sktime.toolbox@gmail.com>
|
6
6
|
Maintainer: Franz Király
|
@@ -50,13 +50,12 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
50
50
|
Classifier: Operating System :: POSIX
|
51
51
|
Classifier: Operating System :: Unix
|
52
52
|
Classifier: Operating System :: MacOS
|
53
|
-
Classifier: Programming Language :: Python :: 3.8
|
54
53
|
Classifier: Programming Language :: Python :: 3.9
|
55
54
|
Classifier: Programming Language :: Python :: 3.10
|
56
55
|
Classifier: Programming Language :: Python :: 3.11
|
57
56
|
Classifier: Programming Language :: Python :: 3.12
|
58
57
|
Classifier: Programming Language :: Python :: 3.13
|
59
|
-
Requires-Python: <3.14,>=3.
|
58
|
+
Requires-Python: <3.14,>=3.9
|
60
59
|
Description-Content-Type: text/markdown
|
61
60
|
License-File: LICENSE
|
62
61
|
Provides-Extra: all_extras
|
@@ -65,18 +64,18 @@ Requires-Dist: pandas; extra == "all-extras"
|
|
65
64
|
Provides-Extra: binder
|
66
65
|
Requires-Dist: jupyter; extra == "binder"
|
67
66
|
Provides-Extra: dev
|
67
|
+
Requires-Dist: scikit-learn>=0.24.0; extra == "dev"
|
68
68
|
Requires-Dist: pre-commit; extra == "dev"
|
69
69
|
Requires-Dist: pytest; extra == "dev"
|
70
70
|
Requires-Dist: pytest-cov; extra == "dev"
|
71
|
-
Requires-Dist: scikit-learn>=0.24.0; (python_version < "3.13" or sys_platform != "win32") and extra == "dev"
|
72
71
|
Provides-Extra: docs
|
73
72
|
Requires-Dist: jupyter; extra == "docs"
|
74
73
|
Requires-Dist: myst-parser; extra == "docs"
|
75
74
|
Requires-Dist: nbsphinx>=0.8.6; extra == "docs"
|
76
75
|
Requires-Dist: numpydoc; extra == "docs"
|
77
76
|
Requires-Dist: pydata-sphinx-theme; extra == "docs"
|
78
|
-
Requires-Dist: sphinx-issues<
|
79
|
-
Requires-Dist: sphinx-gallery<0.
|
77
|
+
Requires-Dist: sphinx-issues<6.0.0; extra == "docs"
|
78
|
+
Requires-Dist: sphinx-gallery<0.19.0; extra == "docs"
|
80
79
|
Requires-Dist: sphinx-panels; extra == "docs"
|
81
80
|
Requires-Dist: sphinx-design<0.7.0; extra == "docs"
|
82
81
|
Requires-Dist: Sphinx!=7.2.0,<9.0.0; extra == "docs"
|
@@ -104,7 +103,7 @@ Requires-Dist: safety; extra == "test"
|
|
104
103
|
Requires-Dist: numpy; extra == "test"
|
105
104
|
Requires-Dist: scipy; extra == "test"
|
106
105
|
Requires-Dist: pandas; extra == "test"
|
107
|
-
Requires-Dist: scikit-learn>=0.24.0;
|
106
|
+
Requires-Dist: scikit-learn>=0.24.0; extra == "test"
|
108
107
|
|
109
108
|
<a href="https://skbase.readthedocs.io/en/latest/"><img src="https://github.com/sktime/skbase/blob/main/docs/source/images/skbase-logo-with-name.png" width="175" align="right" /></a>
|
110
109
|
|
@@ -115,7 +114,7 @@ Requires-Dist: scikit-learn>=0.24.0; (python_version < "3.13" or sys_platform !=
|
|
115
114
|
`skbase` provides base classes for creating scikit-learn-like parametric objects,
|
116
115
|
along with tools to make it easier to build your own packages that follow these design patterns.
|
117
116
|
|
118
|
-
:rocket: Version 0.
|
117
|
+
:rocket: Version 0.12.0 is now available. Check out our
|
119
118
|
[release notes](https://skbase.readthedocs.io/en/latest/changelog.html).
|
120
119
|
|
121
120
|
| Overview | |
|
@@ -141,7 +140,7 @@ For trouble shooting or more information, see our
|
|
141
140
|
[detailed installation instructions](https://skbase.readthedocs.io/en/latest/user_documentation/installation.html).
|
142
141
|
|
143
142
|
- **Operating system**: macOS X · Linux · Windows 8.1 or higher
|
144
|
-
- **Python version**: Python 3.
|
143
|
+
- **Python version**: Python 3.9, 3.10, 3.11, 3.12, and 3.13
|
145
144
|
- **Package managers**: [pip]
|
146
145
|
|
147
146
|
[pip]: https://pip.pypa.io/en/stable/
|
@@ -1,9 +1,11 @@
|
|
1
1
|
docs/source/conf.py,sha256=kFc-4qkb0ZGD5cDej5KPJhMePp9kpVu6ZqFoF0fgovg,9951
|
2
|
-
skbase/__init__.py,sha256=
|
3
|
-
skbase/_exceptions.py,sha256=
|
2
|
+
skbase/__init__.py,sha256=WEOqt1h0pUasRLXHL63vuu7eUGzR-CzdszMmunJyH70,346
|
3
|
+
skbase/_exceptions.py,sha256=asAhMbBeMwRBU_HDPFzwVCz8sb9_itG_6JVq3v_RZv8,1100
|
4
4
|
skbase/_nopytest_tests.py,sha256=npL5pibSgCpulEGw0NqLKcG0majh6xcdW5A4Zibf78s,1077
|
5
5
|
skbase/base/__init__.py,sha256=5ZLlwJeyfKDA1lAylBJgZd3t5JY25xsgQB4waQnroa8,751
|
6
|
-
skbase/base/_base.py,sha256=
|
6
|
+
skbase/base/_base.py,sha256=frYe-ycOLR8t-swr_ROwBTgFIFC2JEGV15yfqS0BJ5s,65942
|
7
|
+
skbase/base/_clone_base.py,sha256=u-uw9mOLUf0QKxvM4ibeClYRTSf7wwcKDvAoiuh0Y-Q,5281
|
8
|
+
skbase/base/_clone_plugins.py,sha256=61_FqlE0oCDFymFtzrSSWlbm_yg5ugCyFnhNLF2MdSo,6693
|
7
9
|
skbase/base/_meta.py,sha256=VY6_R2tE885j-GTDuzLFyho5i382jOni5lkR_ykPZqo,38815
|
8
10
|
skbase/base/_tagmanager.py,sha256=nKoiIC1yXFFSpN5ljWbMrwA-pwlbxsljgKuUywh1MR4,7289
|
9
11
|
skbase/base/_pretty_printing/__init__.py,sha256=bVuKnwafn8c2q2AGJ9BOu9cmu-xBjiOxHf1hxjm8K2A,492
|
@@ -21,8 +23,8 @@ skbase/testing/utils/__init__.py,sha256=kaLuqQwJsCunRWsUb1JwTVG-iqXbzdUobuYHNHsB
|
|
21
23
|
skbase/testing/utils/_conditional_fixtures.py,sha256=QwI7K28Lsy6RAkDP94goo8uWWvMzKKNOmXRFtc9RNtI,9890
|
22
24
|
skbase/testing/utils/inspect.py,sha256=e6F7AIuDhBTpgK8KKmiuwxeggrMjC7DHuSAKA1jOU2A,761
|
23
25
|
skbase/tests/__init__.py,sha256=d2_OTTnt0GX5otQsBuNAb1evg8C5Fi0JjqK2VsfMtXU,37
|
24
|
-
skbase/tests/conftest.py,sha256=
|
25
|
-
skbase/tests/test_base.py,sha256=
|
26
|
+
skbase/tests/conftest.py,sha256=mTtbBiKzmC2dRF3vir_Kh1EmcAhkxNfNsmxIvbmcfos,10723
|
27
|
+
skbase/tests/test_base.py,sha256=TDnXM805Ak50DgrG-tzRzcZy9CagpCtq-jIdRzKS0PY,51553
|
26
28
|
skbase/tests/test_baseestimator.py,sha256=fuzpwxjYzyl-Vrte1va4AWdbYElhWnED8W10236Xprc,4731
|
27
29
|
skbase/tests/test_exceptions.py,sha256=wOdk7Gp8pvbhucna3_9FxTk9xFLjC9XNsGsVabQLYEE,629
|
28
30
|
skbase/tests/test_meta.py,sha256=TTZW_BlEbirLjeEQCV1x3IYCf6V2ULJ_KfyVHgs0wkU,5662
|
@@ -41,6 +43,7 @@ skbase/utils/deep_equals/_common.py,sha256=O0ODPJGwdq6G-KdeGoHgyote53tNcxu3y2jHv
|
|
41
43
|
skbase/utils/deep_equals/_deep_equals.py,sha256=DT6nE0p1IGsLb82h3JJu24_nWeNE2HI46eL2qPlqxbo,19151
|
42
44
|
skbase/utils/dependencies/__init__.py,sha256=cCUa_P-RiDs4pW6cw51uYeoBMaMa9iycwiFkwqkIizc,419
|
43
45
|
skbase/utils/dependencies/_dependencies.py,sha256=muUbqw4vmmn6YvkugIhlaqGKgW8pSermnhvn5DvahQs,20763
|
46
|
+
skbase/utils/dependencies/_import.py,sha256=PoaZE6WiCTp-vuvrkrM6EO2wWvX6owanQ0uESFhqLtQ,802
|
44
47
|
skbase/utils/dependencies/tests/__init__.py,sha256=UqE6wenG-HffjT2Z974OLzmXG-M8PNOP9nUnNfqtfT4,74
|
45
48
|
skbase/utils/dependencies/tests/test_check_dependencies.py,sha256=uxAC3gr4VWTlgctN90pnT1ra_UYkPxQHEla-IljX-n0,2238
|
46
49
|
skbase/utils/tests/__init__.py,sha256=YfvP5lpCrTC_6SIakU7jBBdqYyuqE07nZ56ZYKTs3f0,165
|
@@ -57,9 +60,9 @@ skbase/validate/_types.py,sha256=riVEVlj8ipErZX07OVbzv6zdGKssfegHyMr8XwaBm6M,121
|
|
57
60
|
skbase/validate/tests/__init__.py,sha256=wunQBy6rajyrDymKvuFVajsBjj90VP5IFey5b6ZIRCk,70
|
58
61
|
skbase/validate/tests/test_iterable_named_objects.py,sha256=NaEwdmtQJJy4GXMSh9ULOaR4ua7R11BcE6Khz5RKWUk,7438
|
59
62
|
skbase/validate/tests/test_type_validations.py,sha256=oIysbDxRlbBMcCOrDMW6MM6VqhhMWJxNP6NO9Id9Q5g,14133
|
60
|
-
scikit_base-0.
|
61
|
-
scikit_base-0.
|
62
|
-
scikit_base-0.
|
63
|
-
scikit_base-0.
|
64
|
-
scikit_base-0.
|
65
|
-
scikit_base-0.
|
63
|
+
scikit_base-0.12.0.dist-info/LICENSE,sha256=W2h8EYZ_G_mvCmCmXTTYqv66QF5NgSMbzLYJdk8qHVg,1525
|
64
|
+
scikit_base-0.12.0.dist-info/METADATA,sha256=4pzEkNaQD8FLpiTLpKs2CVQ-kBZyuUnsRP_9a1tDmZw,8487
|
65
|
+
scikit_base-0.12.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
66
|
+
scikit_base-0.12.0.dist-info/top_level.txt,sha256=FbRMsZcP-O6pMLGZpxA5pQ-ClfRzoB6Yr-hTViYqwT0,57
|
67
|
+
scikit_base-0.12.0.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
68
|
+
scikit_base-0.12.0.dist-info/RECORD,,
|
skbase/__init__.py
CHANGED
skbase/_exceptions.py
CHANGED
@@ -21,11 +21,10 @@ class FixtureGenerationError(Exception):
|
|
21
21
|
class NotFittedError(ValueError, AttributeError):
|
22
22
|
"""Exception class to raise if estimator is used before fitting.
|
23
23
|
|
24
|
-
This class inherits from both ValueError and AttributeError to help with
|
24
|
+
This class inherits from both ``ValueError`` and ``AttributeError`` to help with
|
25
25
|
exception handling.
|
26
26
|
|
27
27
|
References
|
28
28
|
----------
|
29
|
-
[1] scikit-learn's NotFittedError
|
30
|
-
[2] sktime's NotFittedError
|
29
|
+
.. [1] Based on scikit-learn's NotFittedError
|
31
30
|
"""
|