runtime-sdk 0.4.22__tar.gz → 0.4.23__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.
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/PKG-INFO +1 -1
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/pyproject.toml +1 -1
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk/cli.py +4 -2
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/PKG-INFO +1 -1
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/README.md +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk/__init__.py +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk/client.py +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk/config.py +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/SOURCES.txt +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/dependency_links.txt +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/entry_points.txt +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/requires.txt +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/scripts/runtime_sdk.egg-info/top_level.txt +0 -0
- {runtime_sdk-0.4.22 → runtime_sdk-0.4.23}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: runtime-sdk
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.23
|
|
4
4
|
Summary: Runtime Python SDK and CLI
|
|
5
5
|
Project-URL: Repository, https://github.com/The-Money-Company-Limited/runtimevm
|
|
6
6
|
Project-URL: Issues, https://github.com/The-Money-Company-Limited/runtimevm/issues
|
|
@@ -1256,14 +1256,16 @@ def _render_computer_table(computers: list[dict[str, Any]], *, title: str | None
|
|
|
1256
1256
|
|
|
1257
1257
|
|
|
1258
1258
|
def _select_prompt(message: str, choices: list[Any], *, instruction: str | None = None) -> Any:
|
|
1259
|
+
# questionary rejects use_jk_keys together with use_search_filter because
|
|
1260
|
+
# j/k would be swallowed by the search prefix. We pick search over vim keys.
|
|
1259
1261
|
return _UI.q().select(
|
|
1260
1262
|
message,
|
|
1261
1263
|
choices=choices,
|
|
1262
1264
|
qmark="●",
|
|
1263
1265
|
pointer="❯",
|
|
1264
|
-
instruction=instruction or "↑↓ navigate ·
|
|
1266
|
+
instruction=instruction or "↑↓ navigate · type to search · enter · esc cancel",
|
|
1265
1267
|
use_indicator=True,
|
|
1266
|
-
use_jk_keys=
|
|
1268
|
+
use_jk_keys=False,
|
|
1267
1269
|
use_search_filter=True,
|
|
1268
1270
|
style=_UI.style(),
|
|
1269
1271
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: runtime-sdk
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.23
|
|
4
4
|
Summary: Runtime Python SDK and CLI
|
|
5
5
|
Project-URL: Repository, https://github.com/The-Money-Company-Limited/runtimevm
|
|
6
6
|
Project-URL: Issues, https://github.com/The-Money-Company-Limited/runtimevm/issues
|
|
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
|