backend.ai-plugin 25.3.1__py3-none-any.whl → 25.3.3rc1__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.
Potentially problematic release.
This version of backend.ai-plugin might be problematic. Click here for more details.
- ai/backend/plugin/VERSION +1 -1
- ai/backend/plugin/entrypoint.py +18 -10
- {backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/METADATA +3 -3
- backend.ai_plugin-25.3.3rc1.dist-info/RECORD +11 -0
- backend.ai_plugin-25.3.1.dist-info/RECORD +0 -11
- {backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/WHEEL +0 -0
- {backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/entry_points.txt +0 -0
- {backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/namespace_packages.txt +0 -0
- {backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/top_level.txt +0 -0
ai/backend/plugin/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
25.3.
|
|
1
|
+
25.3.3rc1
|
ai/backend/plugin/entrypoint.py
CHANGED
|
@@ -111,17 +111,25 @@ def scan_entrypoint_from_buildscript(group_name: str) -> Iterator[EntryPoint]:
|
|
|
111
111
|
for buildscript_path in _glob(ai_backend_ns_path, "BUILD", _default_glob_excluded_patterns):
|
|
112
112
|
for entrypoint in extract_entrypoints_from_buildscript(group_name, buildscript_path):
|
|
113
113
|
entrypoints[entrypoint.name] = entrypoint
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
114
|
+
if os.environ.get("SCIE", None) is None:
|
|
115
|
+
# Override with the entrypoints found in the current source directories,
|
|
116
|
+
try:
|
|
117
|
+
build_root = find_build_root()
|
|
118
|
+
except ValueError:
|
|
119
|
+
pass
|
|
120
|
+
else:
|
|
121
|
+
src_path = build_root / "src"
|
|
122
|
+
log.debug("scan_entrypoint_from_buildscript(%r): current src: %s", group_name, src_path)
|
|
123
|
+
for buildscript_path in _glob(src_path, "BUILD", _default_glob_excluded_patterns):
|
|
124
|
+
for entrypoint in extract_entrypoints_from_buildscript(
|
|
125
|
+
group_name, buildscript_path
|
|
126
|
+
):
|
|
127
|
+
entrypoints[entrypoint.name] = entrypoint
|
|
119
128
|
else:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
entrypoints[entrypoint.name] = entrypoint
|
|
129
|
+
log.debug(
|
|
130
|
+
"scan_entrypoint_from_buildscript(%r): skipping 'src' when executed inside the SCIE environment",
|
|
131
|
+
group_name,
|
|
132
|
+
)
|
|
125
133
|
yield from entrypoints.values()
|
|
126
134
|
|
|
127
135
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: backend.ai-plugin
|
|
3
|
-
Version: 25.3.
|
|
3
|
+
Version: 25.3.3rc1
|
|
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 :: 4 - Beta
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: License :: OSI Approved :: MIT License
|
|
21
21
|
Requires-Python: >=3.12,<3.13
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
-
Requires-Dist: backend.ai-logging==25.3.
|
|
23
|
+
Requires-Dist: backend.ai-logging==25.3.3rc1
|
|
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,11 @@
|
|
|
1
|
+
ai/backend/plugin/VERSION,sha256=SkAcnrg5gReYN1oSqbBYbENfslHgco2fhVPbZAnc-dc,9
|
|
2
|
+
ai/backend/plugin/__init__.py,sha256=HKBIEWtrpEk2KY3fB3Xb72N0xz5zoYUyn2HfZ75bTsc,96
|
|
3
|
+
ai/backend/plugin/cli.py,sha256=oG3KUWot27WlRVwrpG9i2U-OF6XjwuweVdxVmUe4a4c,5443
|
|
4
|
+
ai/backend/plugin/entrypoint.py,sha256=iCTPCsWEXEAn411qqgdpPyrO40eUEOuDhi4f9LmFu7I,9181
|
|
5
|
+
ai/backend/plugin/py.typed,sha256=L3M0nPxGMCVTGcbI38G0aomWrOnRTY4HVjsWWRWRjsI,12
|
|
6
|
+
backend.ai_plugin-25.3.3rc1.dist-info/METADATA,sha256=xQc5GsdcIImTu5w0FS4vLK_OzkHIL6hjFbTeH6c7Xno,1234
|
|
7
|
+
backend.ai_plugin-25.3.3rc1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
8
|
+
backend.ai_plugin-25.3.3rc1.dist-info/entry_points.txt,sha256=XxdR8AJRnWYCT-BgkqvFySRw_WjL0r9M43fRAVszaqY,56
|
|
9
|
+
backend.ai_plugin-25.3.3rc1.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
10
|
+
backend.ai_plugin-25.3.3rc1.dist-info/top_level.txt,sha256=TJAp5TUfTUztZSUatbygths7CWRrFfnOMCtZ-DIcw6c,3
|
|
11
|
+
backend.ai_plugin-25.3.3rc1.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
ai/backend/plugin/VERSION,sha256=6Of8EYMCWj_Y6LxusYCdxwvTDkDxzPUHvYNFPbMzgQI,6
|
|
2
|
-
ai/backend/plugin/__init__.py,sha256=HKBIEWtrpEk2KY3fB3Xb72N0xz5zoYUyn2HfZ75bTsc,96
|
|
3
|
-
ai/backend/plugin/cli.py,sha256=oG3KUWot27WlRVwrpG9i2U-OF6XjwuweVdxVmUe4a4c,5443
|
|
4
|
-
ai/backend/plugin/entrypoint.py,sha256=Gn0WuwRfxft-kcmCqGYyg4LRcODK_JJ91csji_3efUY,8881
|
|
5
|
-
ai/backend/plugin/py.typed,sha256=L3M0nPxGMCVTGcbI38G0aomWrOnRTY4HVjsWWRWRjsI,12
|
|
6
|
-
backend.ai_plugin-25.3.1.dist-info/METADATA,sha256=PMiVZ5-p08JN93BG2X9Xe_MQz4SmTJRSNjNpQHBYkKs,1241
|
|
7
|
-
backend.ai_plugin-25.3.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
8
|
-
backend.ai_plugin-25.3.1.dist-info/entry_points.txt,sha256=XxdR8AJRnWYCT-BgkqvFySRw_WjL0r9M43fRAVszaqY,56
|
|
9
|
-
backend.ai_plugin-25.3.1.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
10
|
-
backend.ai_plugin-25.3.1.dist-info/top_level.txt,sha256=TJAp5TUfTUztZSUatbygths7CWRrFfnOMCtZ-DIcw6c,3
|
|
11
|
-
backend.ai_plugin-25.3.1.dist-info/RECORD,,
|
|
File without changes
|
{backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{backend.ai_plugin-25.3.1.dist-info → backend.ai_plugin-25.3.3rc1.dist-info}/namespace_packages.txt
RENAMED
|
File without changes
|
|
File without changes
|