Skip to content

Commit b0ddd0f

Browse files
authored
[Quantum] Bug fix for retracted Quantum CLI extension v1.0.0b5 release (#8564)
* Temporarily added '.dev10' to version number * Made __init__.py changes * Removed import from vendored_sdks/__init__.py and restored version number to 1.0.0b4
1 parent ff21152 commit b0ddd0f

File tree

1 file changed

+22
-0
lines changed
  • src/quantum/azext_quantum/vendored_sdks/azure_quantum_python

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
##
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License.
4+
##
5+
6+
"""Defines interfaces for interacting with Azure Quantum"""
7+
8+
9+
import logging
10+
from .version import __version__
11+
12+
# from .job.job import *
13+
# from .job.session import *
14+
from .workspace import *
15+
16+
from ._client.models._enums import JobStatus, SessionStatus, SessionJobFailurePolicy, ItemType
17+
18+
logger = logging.getLogger(__name__)
19+
logger.info(f"version: {__version__}")
20+
21+
22+
__all__ = [ "Workspace" ]

0 commit comments

Comments
 (0)