About cookies on this site Our websites require some cookies to function properly (required). In addition, other cookies may be used with your consent to analyze site usage, improve the user experience and for advertising. For more information, please review your options. By visiting our website, you agree to our processing of information as described in IBM’sprivacy statement. To provide a smooth navigation, your cookie preferences will be shared across the IBM web domains listed here.
Qiskit 0.27 release notes
0.27.0
Terra 0.17.4
No change
Aer 0.8.2
No change
Ignis 0.6.0
No change
Aqua 0.9.2
Bug Fixes
- Removed version caps from the requirements list to enable installing with newer versions of dependencies.
IBM Q Provider 0.14.0
New Features
-
You can now use the
qiskit.providers.ibmq.runtime.RuntimeJob.logs()
method to retrieve job logs. Note that logs are only available after the job finishes. -
A new backend configuration attribute
input_allowed
now tells you the types of input supported by the backend. Valid input types arejob
, which means circuit jobs, andruntime
, which means Qiskit Runtime.You can also use
input_allowed
in backend filtering. For example:from qiskit import IBMQ provider = IBMQ.load_account() # Get a list of all backends that support runtime. runtime_backends = provider.backends(input_allowed='runtime')
Upgrade Notes
qiskit-ibmq-provider
now uses a new packagewebsocket-client
as its websocket client, and packageswebsockets
andnest-asyncio
are no longer required.setup.py
andrequirements.txt
have been updated accordingly.
Bug Fixes
-
Fixes the issue that uses
shots=1
instead of the documented default when noshots
is specified forrun_circuits()
. -
Fixes the issue wherein a
QiskitBackendNotFoundError
exception is raised when retrieving a runtime job that was submitted using a different provider than the one used for retrieval. -
Streaming runtime program interim results with proxies is now supported. You can specify the proxies to use when enabling the account as usual, for example:
from qiskit import IBMQ proxies = {'urls': {'https://127.0.0.1:8085'}} provider = IBMQ.enable_account(API_TOKEN, proxies=proxies)
Was this page helpful?
Report a bug or request content on GitHub.