backend.ai-plugin 25.13.0rc1__tar.gz → 25.13.2__tar.gz
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.
Potentially problematic release.
This version of backend.ai-plugin might be problematic. Click here for more details.
- {backend_ai_plugin-25.13.0rc1/backend.ai_plugin.egg-info → backend_ai_plugin-25.13.2}/PKG-INFO +3 -3
- backend_ai_plugin-25.13.2/ai/backend/plugin/VERSION +1 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/ai/backend/plugin/cli.py +2 -9
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2/backend.ai_plugin.egg-info}/PKG-INFO +3 -3
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/requires.txt +1 -1
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/setup.py +3 -3
- backend_ai_plugin-25.13.0rc1/ai/backend/plugin/VERSION +0 -1
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/MANIFEST.in +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/ai/backend/plugin/__init__.py +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/ai/backend/plugin/entrypoint.py +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/ai/backend/plugin/py.typed +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/SOURCES.txt +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/dependency_links.txt +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/entry_points.txt +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/namespace_packages.txt +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/not-zip-safe +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/top_level.txt +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend_shim.py +0 -0
- {backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/setup.cfg +0 -0
{backend_ai_plugin-25.13.0rc1/backend.ai_plugin.egg-info → backend_ai_plugin-25.13.2}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: backend.ai-plugin
|
|
3
|
-
Version: 25.13.
|
|
3
|
+
Version: 25.13.2
|
|
4
4
|
Summary: Backend.AI Plugin Subsystem
|
|
5
5
|
Home-page: https://github.com/lablup/backend.ai
|
|
6
6
|
Author: Lablup Inc. and contributors
|
|
@@ -15,12 +15,12 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Environment :: No Input/Output (Daemon)
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering
|
|
17
17
|
Classifier: Topic :: Software Development
|
|
18
|
-
Classifier: Development Status ::
|
|
18
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Classifier: License :: OSI Approved :: MIT License
|
|
21
21
|
Requires-Python: >=3.13,<3.14
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
Requires-Dist: backend.ai-logging==25.13.
|
|
23
|
+
Requires-Dist: backend.ai-logging==25.13.2
|
|
24
24
|
Requires-Dist: click~=8.1.7
|
|
25
25
|
Requires-Dist: colorama>=0.4.6
|
|
26
26
|
Requires-Dist: tabulate~=0.8.9
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
25.13.2
|
|
@@ -5,7 +5,7 @@ import itertools
|
|
|
5
5
|
import json
|
|
6
6
|
import logging
|
|
7
7
|
from collections import defaultdict
|
|
8
|
-
from typing import
|
|
8
|
+
from typing import Self
|
|
9
9
|
|
|
10
10
|
import click
|
|
11
11
|
import colorama
|
|
@@ -36,14 +36,7 @@ class CLIContext:
|
|
|
36
36
|
self.log_level = log_level
|
|
37
37
|
|
|
38
38
|
def __enter__(self) -> Self:
|
|
39
|
-
|
|
40
|
-
if self.log_level != LogLevel.NOTSET:
|
|
41
|
-
log_config["level"] = self.log_level
|
|
42
|
-
log_config["pkg-ns"] = {
|
|
43
|
-
"": LogLevel.WARNING,
|
|
44
|
-
"ai.backend": self.log_level,
|
|
45
|
-
}
|
|
46
|
-
self._logger = LocalLogger(log_config)
|
|
39
|
+
self._logger = LocalLogger(log_level=self.log_level)
|
|
47
40
|
self._logger.__enter__()
|
|
48
41
|
return self
|
|
49
42
|
|
{backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2/backend.ai_plugin.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: backend.ai-plugin
|
|
3
|
-
Version: 25.13.
|
|
3
|
+
Version: 25.13.2
|
|
4
4
|
Summary: Backend.AI Plugin Subsystem
|
|
5
5
|
Home-page: https://github.com/lablup/backend.ai
|
|
6
6
|
Author: Lablup Inc. and contributors
|
|
@@ -15,12 +15,12 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Environment :: No Input/Output (Daemon)
|
|
16
16
|
Classifier: Topic :: Scientific/Engineering
|
|
17
17
|
Classifier: Topic :: Software Development
|
|
18
|
-
Classifier: Development Status ::
|
|
18
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.13
|
|
20
20
|
Classifier: License :: OSI Approved :: MIT License
|
|
21
21
|
Requires-Python: >=3.13,<3.14
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
Requires-Dist: backend.ai-logging==25.13.
|
|
23
|
+
Requires-Dist: backend.ai-logging==25.13.2
|
|
24
24
|
Requires-Dist: click~=8.1.7
|
|
25
25
|
Requires-Dist: colorama>=0.4.6
|
|
26
26
|
Requires-Dist: tabulate~=0.8.9
|
|
@@ -15,7 +15,7 @@ setup(**{
|
|
|
15
15
|
'Environment :: No Input/Output (Daemon)',
|
|
16
16
|
'Topic :: Scientific/Engineering',
|
|
17
17
|
'Topic :: Software Development',
|
|
18
|
-
'Development Status ::
|
|
18
|
+
'Development Status :: 5 - Production/Stable',
|
|
19
19
|
'Programming Language :: Python :: 3.13',
|
|
20
20
|
'License :: OSI Approved :: MIT License',
|
|
21
21
|
],
|
|
@@ -26,7 +26,7 @@ setup(**{
|
|
|
26
26
|
],
|
|
27
27
|
},
|
|
28
28
|
'install_requires': (
|
|
29
|
-
"""backend.ai-logging==25.13.
|
|
29
|
+
"""backend.ai-logging==25.13.2
|
|
30
30
|
""",
|
|
31
31
|
'click~=8.1.7',
|
|
32
32
|
'colorama>=0.4.6',
|
|
@@ -61,7 +61,7 @@ Package Structure
|
|
|
61
61
|
},
|
|
62
62
|
'python_requires': '>=3.13,<3.14',
|
|
63
63
|
'url': 'https://github.com/lablup/backend.ai',
|
|
64
|
-
'version': """25.13.
|
|
64
|
+
'version': """25.13.2
|
|
65
65
|
""",
|
|
66
66
|
'zip_safe': False,
|
|
67
67
|
})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
25.13.0rc1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{backend_ai_plugin-25.13.0rc1 → backend_ai_plugin-25.13.2}/backend.ai_plugin.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|