qbraid-cli 0.8.1__py3-none-any.whl → 0.8.2__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.

Potentially problematic release.


This version of qbraid-cli might be problematic. Click here for more details.

qbraid_cli/_version.py CHANGED
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.8.1'
16
- __version_tuple__ = version_tuple = (0, 8, 1)
15
+ __version__ = version = '0.8.2'
16
+ __version_tuple__ = version_tuple = (0, 8, 2)
@@ -36,13 +36,10 @@ def get_package_data(package: str) -> Tuple[str, str, str, str]:
36
36
 
37
37
  """
38
38
  # pylint: disable=import-outside-toplevel
39
- from qbraid_core.system import (
40
- QbraidSystemError,
41
- get_active_python_path,
42
- get_active_site_packages_path,
43
- get_latest_package_version,
44
- get_local_package_version,
45
- )
39
+ from qbraid_core.system.exceptions import QbraidSystemError
40
+ from qbraid_core.system.executables import get_active_python_path
41
+ from qbraid_core.system.packages import get_active_site_packages_path
42
+ from qbraid_core.system.versions import get_latest_package_version, get_local_package_version
46
43
 
47
44
  try:
48
45
  python_pathlib = get_active_python_path()
qbraid_cli/pip/app.py CHANGED
@@ -9,7 +9,8 @@ import subprocess
9
9
  import sys
10
10
 
11
11
  import typer
12
- from qbraid_core.system import QbraidSystemError, get_active_python_path
12
+ from qbraid_core.system.exceptions import QbraidSystemError
13
+ from qbraid_core.system.executables import get_active_python_path
13
14
 
14
15
  from qbraid_cli.handlers import handle_error
15
16
  from qbraid_cli.pip.hooks import get_env_cfg_path, safe_set_include_sys_packages
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qbraid-cli
3
- Version: 0.8.1
3
+ Version: 0.8.2
4
4
  Summary: Command Line Interface for interacting with all parts of the qBraid platform.
5
5
  Author-email: qBraid Development Team <contact@qbraid.com>
6
6
  License: Proprietary
@@ -31,7 +31,7 @@ Requires-Dist: typer >=0.12.1
31
31
  Requires-Dist: rich >=10.11.0
32
32
  Requires-Dist: jupyter-client <9.0.0,>=7.0.0
33
33
  Requires-Dist: ipykernel
34
- Requires-Dist: qbraid-core >=0.1.10
34
+ Requires-Dist: qbraid-core >=0.1.13
35
35
  Provides-Extra: dev
36
36
  Requires-Dist: ruff ; extra == 'dev'
37
37
  Requires-Dist: isort ; extra == 'dev'
@@ -1,5 +1,5 @@
1
1
  qbraid_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- qbraid_cli/_version.py,sha256=Z8fNqmfsoA07nbVEewR90wZCgaN6eyDwPwgtgc2KIak,411
2
+ qbraid_cli/_version.py,sha256=t6tJJG56wlBKsg_0M1Q4l1ir09jgXRw1tolMbDalW9g,411
3
3
  qbraid_cli/exceptions.py,sha256=KjlhYJhSHMVazaNiBjD_Ur06w4sekP8zRsFzBdyIpno,672
4
4
  qbraid_cli/handlers.py,sha256=glxTEwxax3zKgYl9qsZ2evZXgrWQrseJS_OGyHTMFeA,7040
5
5
  qbraid_cli/main.py,sha256=eRgBEYj9WPxHqTbSQvlV39yaDje-6yvZdrTnw5UQbQY,2638
@@ -24,16 +24,16 @@ qbraid_cli/envs/create.py,sha256=HxNciItDoGC5jqiruHm0oUfNSqtuDfzE-ro4ztGUh5Q,218
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
26
  qbraid_cli/jobs/app.py,sha256=kmg9mYla3Nd7EdjQlFu7IOvm7sejLNfPPA6Qeet-IfE,4898
27
- qbraid_cli/jobs/toggle_braket.py,sha256=d5C_Di80jWMFlh-77eH8YY9pjMKWXK5abenUDtPlE_I,6662
27
+ qbraid_cli/jobs/toggle_braket.py,sha256=QVW69MkFyhMZWg_Cl48GgScC084aAG3EgYbyy-PGkqI,6756
28
28
  qbraid_cli/jobs/validation.py,sha256=xNbjUggMhUs4wzkuRm4PuFPi_wrElYicUgYXLznHz3U,2983
29
29
  qbraid_cli/kernels/__init__.py,sha256=jORS9vV17s5laQyq8gSVB18EPBImgEIbMZ1wKC094DA,181
30
30
  qbraid_cli/kernels/app.py,sha256=eELxcuYV_d0wNR5t3IYznEcjqGmRM1j7GeHqVgcvDqs,3439
31
31
  qbraid_cli/pip/__init__.py,sha256=tJtU0rxn-ODogNh5Y4pp_BgDQXMN-3JY1QGj0OZHwjQ,169
32
- qbraid_cli/pip/app.py,sha256=yd55KzE1dApxPV5fyBa8PfdxaeDovUZyrPm_UZy_Ie0,1386
32
+ qbraid_cli/pip/app.py,sha256=Cer_Tteo_k26bTNiLUX2k-XhdSU3wKuj9ZLubbGv7r4,1439
33
33
  qbraid_cli/pip/hooks.py,sha256=KuDHmntPXVK8tSb4MLk9VANhL-eINswhLd8_g_25WMY,2123
34
- qbraid_cli-0.8.1.dist-info/LICENSE,sha256=P1gi-ofB8lmkRt_mxDoJpcgQq9Ckq9WhRAS1oYk-G1s,2506
35
- qbraid_cli-0.8.1.dist-info/METADATA,sha256=Hab46g_Tequpsr6ehVMyS8QoAS051pJTr6lvz57RKXc,6732
36
- qbraid_cli-0.8.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
37
- qbraid_cli-0.8.1.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
38
- qbraid_cli-0.8.1.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
39
- qbraid_cli-0.8.1.dist-info/RECORD,,
34
+ qbraid_cli-0.8.2.dist-info/LICENSE,sha256=P1gi-ofB8lmkRt_mxDoJpcgQq9Ckq9WhRAS1oYk-G1s,2506
35
+ qbraid_cli-0.8.2.dist-info/METADATA,sha256=QEXfGgrGrx2CzzgSARRfrIEv-wogBV0EgYXO-50gLTg,6732
36
+ qbraid_cli-0.8.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
37
+ qbraid_cli-0.8.2.dist-info/entry_points.txt,sha256=c5ZJ7NjbxhDqMpou9q5F03_b_KG34HzFDijIDmEIwgQ,47
38
+ qbraid_cli-0.8.2.dist-info/top_level.txt,sha256=LTYJgeYSCHo9Il8vZu0yIPuGdGyNaIw6iRy6BeoZo8o,11
39
+ qbraid_cli-0.8.2.dist-info/RECORD,,