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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: runtime-sdk
3
- Version: 0.4.22
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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "runtime-sdk"
3
- version = "0.4.22"
3
+ version = "0.4.23"
4
4
  description = "Runtime Python SDK and CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -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 · / search · enter select · esc cancel",
1266
+ instruction=instruction or "↑↓ navigate · type to search · enter · esc cancel",
1265
1267
  use_indicator=True,
1266
- use_jk_keys=True,
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.22
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