Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qiskit_ibm_catalog/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.8.0
3 changes: 2 additions & 1 deletion qiskit_ibm_catalog/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ def save_account(
except ValueError as error:
raise QiskitServerlessException(
"Your channel value is not correct. Use one of the available channels: "
f"{Channel.LOCAL.value}, {Channel.IBM_QUANTUM.value}, {Channel.IBM_CLOUD.value}"
f"{Channel.LOCAL.value}, {Channel.IBM_QUANTUM.value}, "
f"{Channel.IBM_CLOUD.value}, {Channel.IBM_QUANTUM_PLATFORM.value}"
) from error

QiskitRuntimeService.save_account(
Expand Down
3 changes: 2 additions & 1 deletion qiskit_ibm_catalog/serverless.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def save_account(
except ValueError as error:
raise QiskitServerlessException(
"Your channel value is not correct. Use one of the available channels: "
f"{Channel.LOCAL.value}, {Channel.IBM_QUANTUM.value}, {Channel.IBM_CLOUD.value}"
f"{Channel.LOCAL.value}, {Channel.IBM_QUANTUM.value}, "
f"{Channel.IBM_CLOUD.value}, {Channel.IBM_QUANTUM_PLATFORM.value}"
) from error

QiskitRuntimeService.save_account(
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
certifi>=2021.5.30
importlib_metadata>=4.8.1
qiskit_serverless~=0.23.0
qiskit_serverless~=0.24.0