backend.ai-plugin 25.3.1__tar.gz → 25.3.3rc1__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.

Files changed (19) hide show
  1. {backend_ai_plugin-25.3.1/backend.ai_plugin.egg-info → backend_ai_plugin-25.3.3rc1}/PKG-INFO +3 -3
  2. backend_ai_plugin-25.3.3rc1/ai/backend/plugin/VERSION +1 -0
  3. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/ai/backend/plugin/entrypoint.py +18 -10
  4. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1/backend.ai_plugin.egg-info}/PKG-INFO +3 -3
  5. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/requires.txt +1 -1
  6. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/setup.py +3 -3
  7. backend_ai_plugin-25.3.1/ai/backend/plugin/VERSION +0 -1
  8. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/MANIFEST.in +0 -0
  9. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/ai/backend/plugin/__init__.py +0 -0
  10. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/ai/backend/plugin/cli.py +0 -0
  11. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/ai/backend/plugin/py.typed +0 -0
  12. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/SOURCES.txt +0 -0
  13. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/dependency_links.txt +0 -0
  14. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/entry_points.txt +0 -0
  15. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/namespace_packages.txt +0 -0
  16. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/not-zip-safe +0 -0
  17. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend.ai_plugin.egg-info/top_level.txt +0 -0
  18. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/backend_shim.py +0 -0
  19. {backend_ai_plugin-25.3.1 → backend_ai_plugin-25.3.3rc1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: backend.ai-plugin
3
- Version: 25.3.1
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 :: 5 - Production/Stable
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.1
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 @@
1
+ 25.3.3rc1
@@ -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
- # Override with the entrypoints found in the current source directories,
115
- try:
116
- build_root = find_build_root()
117
- except ValueError:
118
- pass
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
- src_path = build_root / "src"
121
- log.debug("scan_entrypoint_from_buildscript(%r): current src: %s", group_name, src_path)
122
- for buildscript_path in _glob(src_path, "BUILD", _default_glob_excluded_patterns):
123
- for entrypoint in extract_entrypoints_from_buildscript(group_name, buildscript_path):
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.1
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 :: 5 - Production/Stable
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.1
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
@@ -1,4 +1,4 @@
1
- backend.ai-logging==25.3.1
1
+ backend.ai-logging==25.3.3rc1
2
2
  click~=8.1.7
3
3
  colorama>=0.4.6
4
4
  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 :: 5 - Production/Stable',
18
+ 'Development Status :: 4 - Beta',
19
19
  'Programming Language :: Python :: 3.12',
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.3.1',
29
+ 'backend.ai-logging==25.3.3rc1',
30
30
  'click~=8.1.7',
31
31
  'colorama>=0.4.6',
32
32
  'tabulate~=0.8.9',
@@ -60,6 +60,6 @@ Package Structure
60
60
  },
61
61
  'python_requires': '>=3.12,<3.13',
62
62
  'url': 'https://github.com/lablup/backend.ai',
63
- 'version': '25.3.1',
63
+ 'version': '25.3.3rc1',
64
64
  'zip_safe': False,
65
65
  })
@@ -1 +0,0 @@
1
- 25.3.1