backend.ai-cli 25.9.0rc2__tar.gz → 25.15.3__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.
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/PKG-INFO +3 -3
- backend_ai_cli-25.15.3/ai/backend/cli/VERSION +1 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/__main__.py +6 -1
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/PKG-INFO +3 -3
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/requires.txt +1 -1
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/setup.py +5 -3
- backend_ai_cli-25.9.0rc2/ai/backend/cli/VERSION +0 -1
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/MANIFEST.in +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/__init__.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/extensions.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/interaction.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/loader.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/main.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/params.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/py.typed +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/ai/backend/cli/types.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/SOURCES.txt +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/dependency_links.txt +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/entry_points.txt +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/namespace_packages.txt +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/not-zip-safe +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/top_level.txt +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend_shim.py +0 -0
- {backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: backend.ai-cli
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.15.3
|
|
4
4
|
Summary: Backend.AI Command Line Interface Helper
|
|
5
5
|
Home-page: https://github.com/lablup/backend.ai
|
|
6
6
|
Author: Lablup Inc. and contributors
|
|
@@ -15,13 +15,13 @@ 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
23
|
Requires-Dist: attrs>=25.3
|
|
24
|
-
Requires-Dist: backend.ai-plugin==25.
|
|
24
|
+
Requires-Dist: backend.ai-plugin==25.15.3
|
|
25
25
|
Requires-Dist: click~=8.1.7
|
|
26
26
|
Requires-Dist: trafaret~=2.1
|
|
27
27
|
Dynamic: author
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
25.15.3
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import shutil
|
|
2
|
+
import time
|
|
2
3
|
|
|
3
4
|
from .loader import load_entry_points
|
|
4
5
|
|
|
@@ -7,4 +8,8 @@ main = load_entry_points()
|
|
|
7
8
|
|
|
8
9
|
if __name__ == "__main__":
|
|
9
10
|
# Execute right away if the module is directly called from CLI.
|
|
10
|
-
|
|
11
|
+
try:
|
|
12
|
+
main(max_content_width=shutil.get_terminal_size().columns - 2)
|
|
13
|
+
finally:
|
|
14
|
+
# Workaround for tokio/pyo3-async-runtimes shutdown race (BA-1976)
|
|
15
|
+
time.sleep(0.1)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: backend.ai-cli
|
|
3
|
-
Version: 25.
|
|
3
|
+
Version: 25.15.3
|
|
4
4
|
Summary: Backend.AI Command Line Interface Helper
|
|
5
5
|
Home-page: https://github.com/lablup/backend.ai
|
|
6
6
|
Author: Lablup Inc. and contributors
|
|
@@ -15,13 +15,13 @@ 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
23
|
Requires-Dist: attrs>=25.3
|
|
24
|
-
Requires-Dist: backend.ai-plugin==25.
|
|
24
|
+
Requires-Dist: backend.ai-plugin==25.15.3
|
|
25
25
|
Requires-Dist: click~=8.1.7
|
|
26
26
|
Requires-Dist: trafaret~=2.1
|
|
27
27
|
Dynamic: author
|
|
@@ -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
|
],
|
|
@@ -27,7 +27,8 @@ setup(**{
|
|
|
27
27
|
},
|
|
28
28
|
'install_requires': (
|
|
29
29
|
'attrs>=25.3',
|
|
30
|
-
|
|
30
|
+
"""backend.ai-plugin==25.15.3
|
|
31
|
+
""",
|
|
31
32
|
'click~=8.1.7',
|
|
32
33
|
'trafaret~=2.1',
|
|
33
34
|
),
|
|
@@ -75,6 +76,7 @@ You can do the same in `setup.py` as well.
|
|
|
75
76
|
},
|
|
76
77
|
'python_requires': '>=3.13,<3.14',
|
|
77
78
|
'url': 'https://github.com/lablup/backend.ai',
|
|
78
|
-
'version':
|
|
79
|
+
'version': """25.15.3
|
|
80
|
+
""",
|
|
79
81
|
'zip_safe': False,
|
|
80
82
|
})
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
25.9.0rc2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{backend_ai_cli-25.9.0rc2 → backend_ai_cli-25.15.3}/backend.ai_cli.egg-info/namespace_packages.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|