qbraid-cli 0.8.5a0__py3-none-any.whl → 0.8.5a1__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.
- qbraid_cli/_version.py +1 -1
- qbraid_cli/admin/app.py +3 -5
- qbraid_cli/admin/headers.py +3 -3
- qbraid_cli/admin/validation.py +1 -2
- qbraid_cli/configure/actions.py +2 -2
- qbraid_cli/devices/app.py +3 -3
- qbraid_cli/envs/app.py +4 -4
- qbraid_cli/handlers.py +5 -5
- qbraid_cli/jobs/app.py +4 -4
- qbraid_cli/jobs/toggle_braket.py +15 -14
- qbraid_cli/jobs/validation.py +5 -5
- qbraid_cli/pip/hooks.py +1 -1
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/METADATA +1 -1
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/RECORD +18 -18
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/LICENSE +0 -0
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/WHEEL +0 -0
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/entry_points.txt +0 -0
- {qbraid_cli-0.8.5a0.dist-info → qbraid_cli-0.8.5a1.dist-info}/top_level.txt +0 -0
qbraid_cli/_version.py
CHANGED
qbraid_cli/admin/app.py
CHANGED
|
@@ -3,10 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
"""
|
|
5
5
|
Module defining commands in the 'qbraid admin' namespace.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
from typing import List
|
|
9
6
|
|
|
7
|
+
"""
|
|
10
8
|
import typer
|
|
11
9
|
|
|
12
10
|
from qbraid_cli.admin.buildlogs import buildlogs_app
|
|
@@ -21,7 +19,7 @@ admin_app.add_typer(buildlogs_app, name="buildlogs")
|
|
|
21
19
|
|
|
22
20
|
@admin_app.command(name="headers")
|
|
23
21
|
def admin_headers(
|
|
24
|
-
src_paths:
|
|
22
|
+
src_paths: list[str] = typer.Argument(
|
|
25
23
|
..., help="Source file or directory paths to verify.", callback=validate_paths_exist
|
|
26
24
|
),
|
|
27
25
|
header_type: str = typer.Option(
|
|
@@ -31,7 +29,7 @@ def admin_headers(
|
|
|
31
29
|
help="Type of header to use ('default' or 'gpl').",
|
|
32
30
|
callback=validate_header_type,
|
|
33
31
|
),
|
|
34
|
-
skip_files:
|
|
32
|
+
skip_files: list[str] = typer.Option(
|
|
35
33
|
[], "--skip", "-s", help="Files to skip during verification.", callback=validate_paths_exist
|
|
36
34
|
),
|
|
37
35
|
fix: bool = typer.Option(
|
qbraid_cli/admin/headers.py
CHANGED
|
@@ -6,7 +6,7 @@ Script to verify qBraid copyright file headers
|
|
|
6
6
|
|
|
7
7
|
"""
|
|
8
8
|
import os
|
|
9
|
-
from typing import
|
|
9
|
+
from typing import Optional
|
|
10
10
|
|
|
11
11
|
import typer
|
|
12
12
|
from rich.console import Console
|
|
@@ -37,9 +37,9 @@ HEADER_TYPES = {
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
def check_and_fix_headers(
|
|
40
|
-
src_paths:
|
|
40
|
+
src_paths: list[str],
|
|
41
41
|
header_type: str = "default",
|
|
42
|
-
skip_files: Optional[
|
|
42
|
+
skip_files: Optional[list[str]] = None,
|
|
43
43
|
fix: bool = False,
|
|
44
44
|
) -> None:
|
|
45
45
|
"""Script to add or verify qBraid copyright file headers"""
|
qbraid_cli/admin/validation.py
CHANGED
|
@@ -7,7 +7,6 @@ Module for validating command arguments for qBraid admin commands.
|
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
9
|
import os
|
|
10
|
-
from typing import List
|
|
11
10
|
|
|
12
11
|
import typer
|
|
13
12
|
|
|
@@ -21,7 +20,7 @@ def validate_header_type(value: str) -> str:
|
|
|
21
20
|
return validate_item(value, header_types, "Header type")
|
|
22
21
|
|
|
23
22
|
|
|
24
|
-
def validate_paths_exist(paths:
|
|
23
|
+
def validate_paths_exist(paths: list[str]) -> list[str]:
|
|
25
24
|
"""Verifies that each path in the provided list exists."""
|
|
26
25
|
non_existent_paths = [path for path in paths if not os.path.exists(path)]
|
|
27
26
|
if non_existent_paths:
|
qbraid_cli/configure/actions.py
CHANGED
|
@@ -9,7 +9,7 @@ Module defining actions invoked by 'qbraid configure' command(s).
|
|
|
9
9
|
import configparser
|
|
10
10
|
import re
|
|
11
11
|
from copy import deepcopy
|
|
12
|
-
from typing import
|
|
12
|
+
from typing import Optional
|
|
13
13
|
|
|
14
14
|
import typer
|
|
15
15
|
from qbraid_core.config import (
|
|
@@ -53,7 +53,7 @@ def prompt_for_config(
|
|
|
53
53
|
config: configparser.ConfigParser,
|
|
54
54
|
section: str,
|
|
55
55
|
key: str,
|
|
56
|
-
default_values: Optional[
|
|
56
|
+
default_values: Optional[dict[str, str]] = None,
|
|
57
57
|
) -> str:
|
|
58
58
|
"""Prompt the user for a configuration setting, showing the current value as default."""
|
|
59
59
|
default_values = default_values or {}
|
qbraid_cli/devices/app.py
CHANGED
|
@@ -6,7 +6,7 @@ Module defining commands in the 'qbraid devices' namespace.
|
|
|
6
6
|
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
|
-
from typing import Any, Callable, Optional
|
|
9
|
+
from typing import Any, Callable, Optional
|
|
10
10
|
|
|
11
11
|
import typer
|
|
12
12
|
from rich.console import Console
|
|
@@ -42,14 +42,14 @@ def devices_list( # pylint: disable=too-many-branches
|
|
|
42
42
|
if provider:
|
|
43
43
|
filters["provider"] = provider
|
|
44
44
|
|
|
45
|
-
def import_devices() ->
|
|
45
|
+
def import_devices() -> tuple[Any, Callable]:
|
|
46
46
|
from qbraid_core.services.quantum import QuantumClient, process_device_data
|
|
47
47
|
|
|
48
48
|
client = QuantumClient()
|
|
49
49
|
|
|
50
50
|
return client, process_device_data
|
|
51
51
|
|
|
52
|
-
result:
|
|
52
|
+
result: tuple[Callable, Callable] = run_progress_task(import_devices)
|
|
53
53
|
client, process_device_data = result
|
|
54
54
|
raw_data = client.search_devices(filters)
|
|
55
55
|
device_data, msg = process_device_data(raw_data)
|
qbraid_cli/envs/app.py
CHANGED
|
@@ -10,7 +10,7 @@ import shutil
|
|
|
10
10
|
import subprocess
|
|
11
11
|
import sys
|
|
12
12
|
from pathlib import Path
|
|
13
|
-
from typing import TYPE_CHECKING, Optional
|
|
13
|
+
from typing import TYPE_CHECKING, Optional
|
|
14
14
|
|
|
15
15
|
import typer
|
|
16
16
|
from rich.console import Console
|
|
@@ -41,14 +41,14 @@ def envs_create( # pylint: disable=too-many-statements
|
|
|
41
41
|
"""Create a new qBraid environment."""
|
|
42
42
|
env_description = description or ""
|
|
43
43
|
|
|
44
|
-
def create_environment(*args, **kwargs) -> "
|
|
44
|
+
def create_environment(*args, **kwargs) -> "tuple[dict, EMC]":
|
|
45
45
|
"""Create a qBraid environment."""
|
|
46
46
|
from qbraid_core.services.environments.client import EnvironmentManagerClient
|
|
47
47
|
|
|
48
48
|
client = EnvironmentManagerClient()
|
|
49
49
|
return client.create_environment(*args, **kwargs), client
|
|
50
50
|
|
|
51
|
-
def gather_local_data() ->
|
|
51
|
+
def gather_local_data() -> tuple[Path, str]:
|
|
52
52
|
"""Gather environment data and return the slug."""
|
|
53
53
|
from qbraid_core.services.environments import get_default_envs_paths
|
|
54
54
|
|
|
@@ -155,7 +155,7 @@ def envs_remove(
|
|
|
155
155
|
emc = EnvironmentManagerClient()
|
|
156
156
|
emc.delete_environment(slug)
|
|
157
157
|
|
|
158
|
-
def gather_local_data(env_name: str) ->
|
|
158
|
+
def gather_local_data(env_name: str) -> tuple[Path, str]:
|
|
159
159
|
"""Get environment path and slug from name (alias)."""
|
|
160
160
|
installed, aliases = installed_envs_data()
|
|
161
161
|
for alias, slug in aliases.items():
|
qbraid_cli/handlers.py
CHANGED
|
@@ -10,7 +10,7 @@ and executing operations with progress tracking within the qBraid CLI.
|
|
|
10
10
|
import os
|
|
11
11
|
import traceback
|
|
12
12
|
from pathlib import Path
|
|
13
|
-
from typing import Any, Callable,
|
|
13
|
+
from typing import Any, Callable, Optional, Union
|
|
14
14
|
|
|
15
15
|
import typer
|
|
16
16
|
from rich.console import Console
|
|
@@ -136,13 +136,13 @@ def run_progress_task(
|
|
|
136
136
|
return handle_error(message=custom_message)
|
|
137
137
|
|
|
138
138
|
|
|
139
|
-
def _format_list_items(items:
|
|
139
|
+
def _format_list_items(items: list[str]) -> str:
|
|
140
140
|
"""
|
|
141
141
|
Formats a list of items as a string with values comma-separated and
|
|
142
142
|
each item surrounded by single quotes
|
|
143
143
|
|
|
144
144
|
Args:
|
|
145
|
-
items (
|
|
145
|
+
items (list[str]): The list of items to format.
|
|
146
146
|
|
|
147
147
|
Returns:
|
|
148
148
|
str: The formatted string.
|
|
@@ -151,14 +151,14 @@ def _format_list_items(items: List[str]) -> str:
|
|
|
151
151
|
|
|
152
152
|
|
|
153
153
|
def validate_item(
|
|
154
|
-
value: Optional[str], allowed_items:
|
|
154
|
+
value: Optional[str], allowed_items: list[str], item_type: str
|
|
155
155
|
) -> Union[str, None]:
|
|
156
156
|
"""
|
|
157
157
|
Generic item validation function.
|
|
158
158
|
|
|
159
159
|
Args:
|
|
160
160
|
value (optional, str): The value to validate.
|
|
161
|
-
allowed_items (
|
|
161
|
+
allowed_items (list[str]): A list of allowed items.
|
|
162
162
|
item_type (str): A description of the item type (e.g., 'provider', 'status', 'type') for
|
|
163
163
|
error messages.
|
|
164
164
|
|
qbraid_cli/jobs/app.py
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
Module defining commands in the 'qbraid jobs' namespace.
|
|
6
6
|
|
|
7
7
|
"""
|
|
8
|
-
from typing import Any, Callable
|
|
8
|
+
from typing import Any, Callable
|
|
9
9
|
|
|
10
10
|
import typer
|
|
11
11
|
from rich.console import Console
|
|
@@ -66,7 +66,7 @@ def jobs_state(
|
|
|
66
66
|
)
|
|
67
67
|
) -> None:
|
|
68
68
|
"""Display the state of qBraid Quantum Jobs for the current environment."""
|
|
69
|
-
result:
|
|
69
|
+
result: tuple[str, dict[str, tuple[bool, bool]]] = run_progress_get_state(library)
|
|
70
70
|
python_exe, state_values = result
|
|
71
71
|
state_values = dict(sorted(state_values.items()))
|
|
72
72
|
|
|
@@ -95,14 +95,14 @@ def jobs_list(
|
|
|
95
95
|
) -> None:
|
|
96
96
|
"""List qBraid Quantum Jobs."""
|
|
97
97
|
|
|
98
|
-
def import_jobs() ->
|
|
98
|
+
def import_jobs() -> tuple[Any, Callable]:
|
|
99
99
|
from qbraid_core.services.quantum import QuantumClient, process_job_data
|
|
100
100
|
|
|
101
101
|
client = QuantumClient()
|
|
102
102
|
|
|
103
103
|
return client, process_job_data
|
|
104
104
|
|
|
105
|
-
result:
|
|
105
|
+
result: tuple[Any, Callable] = run_progress_task(import_jobs)
|
|
106
106
|
client, process_job_data = result
|
|
107
107
|
# https://github.com/qBraid/api/issues/644
|
|
108
108
|
# raw_data = client.search_jobs(query={"numResults": limit})
|
qbraid_cli/jobs/toggle_braket.py
CHANGED
|
@@ -10,7 +10,7 @@ import os
|
|
|
10
10
|
import re
|
|
11
11
|
import subprocess
|
|
12
12
|
from pathlib import Path
|
|
13
|
-
from typing import Optional
|
|
13
|
+
from typing import Optional
|
|
14
14
|
|
|
15
15
|
import requests
|
|
16
16
|
import typer
|
|
@@ -34,14 +34,14 @@ def fetch_botocore_version() -> Optional[str]:
|
|
|
34
34
|
return None
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
def get_package_data(package: str) ->
|
|
37
|
+
def get_package_data(package: str) -> tuple[str, str, str, str]:
|
|
38
38
|
"""Retrieve package version and location data.
|
|
39
39
|
|
|
40
40
|
Args:
|
|
41
41
|
package (str): The name of the package to retrieve data for.
|
|
42
42
|
|
|
43
43
|
Returns:
|
|
44
|
-
|
|
44
|
+
tuple[str, str, str, str]: The installed and latest versions of the package, and the
|
|
45
45
|
local site-packages path where it is / would be installed.
|
|
46
46
|
|
|
47
47
|
Raises:
|
|
@@ -60,7 +60,7 @@ def get_package_data(package: str) -> Tuple[str, str, str, str]:
|
|
|
60
60
|
installed_version = get_local_package_version(package, python_path=python_pathlib)
|
|
61
61
|
|
|
62
62
|
latest_version = None
|
|
63
|
-
if package
|
|
63
|
+
if package in ["botocore", "boto3"]:
|
|
64
64
|
latest_version = fetch_botocore_version()
|
|
65
65
|
latest_version = latest_version or get_latest_package_version(package)
|
|
66
66
|
|
|
@@ -74,7 +74,7 @@ def confirm_updates(
|
|
|
74
74
|
mode: str,
|
|
75
75
|
site_packages_path: str,
|
|
76
76
|
installed_version: Optional[str] = None,
|
|
77
|
-
|
|
77
|
+
target_version: Optional[str] = None,
|
|
78
78
|
) -> None:
|
|
79
79
|
"""
|
|
80
80
|
Prompts the user to proceed with enabling or disabling qBraid Quantum Jobs.
|
|
@@ -84,7 +84,7 @@ def confirm_updates(
|
|
|
84
84
|
site_packages_path (str): The location of the site-packages directory where
|
|
85
85
|
target package(s) will be updated.
|
|
86
86
|
installed_version (optional, str): The installed version of the target package.
|
|
87
|
-
|
|
87
|
+
target_version (optional, str): The latest version of the target package available on PyPI.
|
|
88
88
|
|
|
89
89
|
Raises:
|
|
90
90
|
ValueError: If an invalid mode is provided.
|
|
@@ -105,12 +105,12 @@ def confirm_updates(
|
|
|
105
105
|
typer.echo(f"\n==> WARNING: {provider}/{core_package} package required <==")
|
|
106
106
|
if (
|
|
107
107
|
installed_version is not None
|
|
108
|
-
and
|
|
109
|
-
and installed_version !=
|
|
108
|
+
and target_version is not None
|
|
109
|
+
and installed_version != target_version
|
|
110
110
|
):
|
|
111
|
-
typer.echo(f"==> WARNING: A
|
|
111
|
+
typer.echo(f"==> WARNING: A different version of {versioned_package} is required. <==")
|
|
112
112
|
typer.echo(f" current version: {installed_version}")
|
|
113
|
-
typer.echo(f"
|
|
113
|
+
typer.echo(f" target version: {target_version}")
|
|
114
114
|
|
|
115
115
|
gerund = mode[:-2].capitalize() + "ing"
|
|
116
116
|
|
|
@@ -146,12 +146,12 @@ def aws_configure_dummy() -> None:
|
|
|
146
146
|
|
|
147
147
|
def enable_braket(auto_confirm: bool = False):
|
|
148
148
|
"""Enable qBraid quantum jobs for Amazon Braket."""
|
|
149
|
-
installed,
|
|
149
|
+
installed, target, path, python_exe = run_progress_task(
|
|
150
150
|
get_package_data, "boto3", description="Solving environment..."
|
|
151
151
|
)
|
|
152
152
|
|
|
153
153
|
if not auto_confirm:
|
|
154
|
-
confirm_updates("enable", path, installed_version=installed,
|
|
154
|
+
confirm_updates("enable", path, installed_version=installed, target_version=target)
|
|
155
155
|
typer.echo("")
|
|
156
156
|
|
|
157
157
|
aws_configure_dummy() # TODO: possibly add another confirmation for writing aws config files
|
|
@@ -165,10 +165,11 @@ def enable_braket(auto_confirm: bool = False):
|
|
|
165
165
|
"install",
|
|
166
166
|
"amazon-braket-sdk",
|
|
167
167
|
"--upgrade",
|
|
168
|
-
"--upgrade-strategy
|
|
168
|
+
"--upgrade-strategy",
|
|
169
|
+
"eager",
|
|
169
170
|
]
|
|
170
171
|
)
|
|
171
|
-
subprocess.check_call([python_exe, "-m", "pip", "install", f"boto3=={
|
|
172
|
+
subprocess.check_call([python_exe, "-m", "pip", "install", f"boto3=={target}"])
|
|
172
173
|
subprocess.check_call([python_exe, "-m", "pip", "uninstall", "botocore", "-y", "--quiet"])
|
|
173
174
|
subprocess.check_call(
|
|
174
175
|
[python_exe, "-m", "pip", "install", "git+https://github.com/qBraid/botocore.git"]
|
qbraid_cli/jobs/validation.py
CHANGED
|
@@ -6,14 +6,14 @@ Module for validating command arguments for qBraid Quantum Jobs.
|
|
|
6
6
|
|
|
7
7
|
"""
|
|
8
8
|
import sys
|
|
9
|
-
from typing import Any, Callable,
|
|
9
|
+
from typing import Any, Callable, Optional
|
|
10
10
|
|
|
11
11
|
import typer
|
|
12
12
|
from rich.console import Console
|
|
13
13
|
|
|
14
14
|
from qbraid_cli.handlers import handle_error, run_progress_task, validate_item
|
|
15
15
|
|
|
16
|
-
LEGACY_ARGS:
|
|
16
|
+
LEGACY_ARGS: dict[str, str] = {
|
|
17
17
|
"amazon_braket": "braket",
|
|
18
18
|
"aws_braket": "braket",
|
|
19
19
|
}
|
|
@@ -39,14 +39,14 @@ def validate_library(value: str) -> str:
|
|
|
39
39
|
return validate_item(value, qjobs_libs, "Library")
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
def get_state(library: Optional[str] = None) ->
|
|
42
|
+
def get_state(library: Optional[str] = None) -> tuple[str, dict[str, tuple[bool, bool]]]:
|
|
43
43
|
"""Get the state of qBraid Quantum Jobs for the specified library."""
|
|
44
44
|
from qbraid_core.services.quantum import QuantumClient
|
|
45
45
|
|
|
46
46
|
jobs_state = QuantumClient.qbraid_jobs_state(device_lib=library)
|
|
47
47
|
|
|
48
48
|
python_exe: str = jobs_state.get("exe", sys.executable)
|
|
49
|
-
libs_state:
|
|
49
|
+
libs_state: dict[str, Any] = jobs_state.get("libs", {})
|
|
50
50
|
|
|
51
51
|
state_values = {
|
|
52
52
|
lib: (state["supported"], state["enabled"]) for lib, state in libs_state.items()
|
|
@@ -57,7 +57,7 @@ def get_state(library: Optional[str] = None) -> Tuple[str, Dict[str, Tuple[bool,
|
|
|
57
57
|
|
|
58
58
|
def run_progress_get_state(
|
|
59
59
|
library: Optional[str] = None,
|
|
60
|
-
) ->
|
|
60
|
+
) -> tuple[str, dict[str, tuple[bool, bool]]]:
|
|
61
61
|
"""Run get state function with rich progress UI."""
|
|
62
62
|
return run_progress_task(
|
|
63
63
|
get_state,
|
qbraid_cli/pip/hooks.py
CHANGED
|
@@ -36,7 +36,7 @@ def find_matching_prefix(python_executable: Path, path_list: list[Path]) -> Opti
|
|
|
36
36
|
|
|
37
37
|
Args:
|
|
38
38
|
python_executable (Path): The path to the Python executable.
|
|
39
|
-
path_list (
|
|
39
|
+
path_list (list[Path]): A list of paths to check against the Python executable path.
|
|
40
40
|
|
|
41
41
|
Returns:
|
|
42
42
|
Optional[Path]: The first matching path that is a prefix of the Python executable path,
|
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
qbraid_cli/_version.py,sha256=
|
|
2
|
+
qbraid_cli/_version.py,sha256=BHnG9tsHsfJe-y6G4hSRrcmypIS_uApyUe_ZjgzdMgQ,413
|
|
3
3
|
qbraid_cli/exceptions.py,sha256=KjlhYJhSHMVazaNiBjD_Ur06w4sekP8zRsFzBdyIpno,672
|
|
4
|
-
qbraid_cli/handlers.py,sha256=
|
|
4
|
+
qbraid_cli/handlers.py,sha256=3RTG5FHL5GTyDoBUv81x5sLyqwf8nzkcqBi0k1ayoW8,7034
|
|
5
5
|
qbraid_cli/main.py,sha256=AR6qp2hU_3OEg1_RxRSfZkO2ZC3H4z-dz3hzaqeAl-I,2620
|
|
6
6
|
qbraid_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
qbraid_cli/admin/__init__.py,sha256=qcWD5mQEUCtr49mrUpZmk7eGDe0L_Gtc8RwZmzIXSwo,175
|
|
8
|
-
qbraid_cli/admin/app.py,sha256=
|
|
8
|
+
qbraid_cli/admin/app.py,sha256=9j2Jn4ICe08aggK4ELDGMO5eusfUECaUiRDrKGdtx6k,1429
|
|
9
9
|
qbraid_cli/admin/buildlogs.py,sha256=1i7CRpkIHIcKgGvHesPr9duCkyV7M-MESaHI5Z3ZdD0,3578
|
|
10
|
-
qbraid_cli/admin/headers.py,sha256=
|
|
11
|
-
qbraid_cli/admin/validation.py,sha256=
|
|
10
|
+
qbraid_cli/admin/headers.py,sha256=xsx10Mq1SVpTMeef5HOdnXxxOo3Uj5l_k0yHiCWxQug,6429
|
|
11
|
+
qbraid_cli/admin/validation.py,sha256=U_8RFWBwRUNPe6LdjNpl-Yz8Br57PLWMoPbpR-jBS-M,979
|
|
12
12
|
qbraid_cli/configure/__init__.py,sha256=YaJ74Ztz2vl3eYp8_jVBucWkXscxz7EZEIzr70OfuOM,187
|
|
13
|
-
qbraid_cli/configure/actions.py,sha256
|
|
13
|
+
qbraid_cli/configure/actions.py,sha256=-BduRmnxvf8JMNonb6VWFtdlHlcHPOPz3Bj5g8kfmBU,3197
|
|
14
14
|
qbraid_cli/configure/app.py,sha256=1uRe2lkUA4TtYb5b4mbD4LH-cKCbsZGT3Wfk7fpNzX0,2414
|
|
15
15
|
qbraid_cli/credits/__init__.py,sha256=MJhgWgpFT1_886sB-_POlRs1y3SRy23HIrKVBkp0X-Y,181
|
|
16
16
|
qbraid_cli/credits/app.py,sha256=AY3qtveO50KeQ2XREiEVqUcTrESgRuoqt9pt2Z8t4Y0,866
|
|
17
17
|
qbraid_cli/devices/__init__.py,sha256=hiScO-px6jCL5cJj5Hbty55EUfNejTO4bmqUZuS3aqc,181
|
|
18
|
-
qbraid_cli/devices/app.py,sha256=
|
|
18
|
+
qbraid_cli/devices/app.py,sha256=3Ly5PPNVhipzbX2h3FrB3fWawLbUcQFcUqv_cZv5eYk,2523
|
|
19
19
|
qbraid_cli/devices/validation.py,sha256=YhShyUufgrKnx2XjXOXF-PqFJYklJT9CgeqIwKcNam4,809
|
|
20
20
|
qbraid_cli/envs/__init__.py,sha256=1-cMvrATsddYxcetPJWxq6bEOqJWMktGdhoZ4qm8euA,172
|
|
21
21
|
qbraid_cli/envs/activate.py,sha256=VpvVYSfQDlcmlNWJOgkLIQ2p8YXPPLG8Jbl5t8GHUDw,2140
|
|
22
|
-
qbraid_cli/envs/app.py,sha256=
|
|
22
|
+
qbraid_cli/envs/app.py,sha256=kbSbZSnl09HI_VqfL5S07ozTvdBrHCOYO8i0msEn7xU,8440
|
|
23
23
|
qbraid_cli/envs/create.py,sha256=xudzkLCNegY34zkXN_Vfl_0zVzg_tW83LcVx9quoWfU,988
|
|
24
24
|
qbraid_cli/envs/data_handling.py,sha256=Ibnp2yJoUDpivb_sNqi0suYgJZNat_LmM6Ya0Ovez5s,1288
|
|
25
25
|
qbraid_cli/jobs/__init__.py,sha256=qVLRHYIzP4XHpx_QWP_vCzd3LsCscCORaEx-Vcbx29U,172
|
|
26
|
-
qbraid_cli/jobs/app.py,sha256=
|
|
27
|
-
qbraid_cli/jobs/toggle_braket.py,sha256=
|
|
28
|
-
qbraid_cli/jobs/validation.py,sha256=
|
|
26
|
+
qbraid_cli/jobs/app.py,sha256=dpRrK6dyVgir9gfJeEzTibABf4JsB6STl0-WLX3ccTM,4885
|
|
27
|
+
qbraid_cli/jobs/toggle_braket.py,sha256=581ddmPtH2y9LwJSqppq8I2PujWBCf1tSk8UNrqehL4,7743
|
|
28
|
+
qbraid_cli/jobs/validation.py,sha256=zMuBGsyx06GWTTgnmyousYYK-qx3IxYTwm0MkPkAWrc,2970
|
|
29
29
|
qbraid_cli/kernels/__init__.py,sha256=jORS9vV17s5laQyq8gSVB18EPBImgEIbMZ1wKC094DA,181
|
|
30
30
|
qbraid_cli/kernels/app.py,sha256=FedFpQBvK-5Fk7PTGskCHz0l8zIb7E7ex8M6UzobfKA,2923
|
|
31
31
|
qbraid_cli/pip/__init__.py,sha256=tJtU0rxn-ODogNh5Y4pp_BgDQXMN-3JY1QGj0OZHwjQ,169
|
|
32
32
|
qbraid_cli/pip/app.py,sha256=Cer_Tteo_k26bTNiLUX2k-XhdSU3wKuj9ZLubbGv7r4,1439
|
|
33
|
-
qbraid_cli/pip/hooks.py,sha256=
|
|
34
|
-
qbraid_cli-0.8.
|
|
35
|
-
qbraid_cli-0.8.
|
|
36
|
-
qbraid_cli-0.8.
|
|
37
|
-
qbraid_cli-0.8.
|
|
38
|
-
qbraid_cli-0.8.
|
|
39
|
-
qbraid_cli-0.8.
|
|
33
|
+
qbraid_cli/pip/hooks.py,sha256=7LeK-vUbM_car_RPxKxQKx3Jb5mOe7SOGEcJjoGp45s,2123
|
|
34
|
+
qbraid_cli-0.8.5a1.dist-info/LICENSE,sha256=P1gi-ofB8lmkRt_mxDoJpcgQq9Ckq9WhRAS1oYk-G1s,2506
|
|
35
|
+
qbraid_cli-0.8.5a1.dist-info/METADATA,sha256=Ksc1VOXvVOy2JRWdLXIxOo8iwvImNRceC6md9uuMjw8,6707
|
|
36
|
+
qbraid_cli-0.8.5a1.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
|
37
|
+
qbraid_cli-0.8.5a1.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
|
|
38
|
+
qbraid_cli-0.8.5a1.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
|
|
39
|
+
qbraid_cli-0.8.5a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|