Skip to content

Update qbraid requirement from <0.12.0,>=0.11.1 to >=0.12.1,<0.13.0#285

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/qbraid-gte-0.12.1-and-lt-0.13.0
Open

Update qbraid requirement from <0.12.0,>=0.11.1 to >=0.12.1,<0.13.0#285
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/qbraid-gte-0.12.1-and-lt-0.13.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Updates the requirements on qbraid to permit the latest version.

Release notes

Sourced from qbraid's releases.

qBraid-SDK 0.12.1

Release 0.12.1 (May 17, 2026)

Summary

Added

  • Added as_batch=True parameter to QbraidDevice.submit() enabling submission of a list of circuits as a single batch job (one API call, one job QRN). QbraidJob.result() returns BatchResult for batch jobs and a single Result for regular jobs. (#1187)

    from qiskit import QuantumCircuit
    from qbraid.runtime import QbraidProvider
    from qbraid.visualization import plot_histogram
    provider = QbraidProvider()
    device = provider.get_device("qbraid:equal1:sim:bell-1")
    assert device.profile.batch_job_support is True
    bell = QuantumCircuit(2)
    bell.h(0)
    bell.cx(0, 1)
    bell.measure_all()
    ghz = QuantumCircuit(3)
    ghz.h(0)
    ghz.cx(0, 1)
    ghz.cx(1, 2)
    ghz.measure_all()
    job = device.run([bell, ghz], as_batch=True, shots=100)
    result = job.result()  # BatchResult
    print(result.num_circuits)  # 2
    for i, circuit_result in enumerate(result.results):
    print(f"Circuit {i}: {circuit_result.data.get_counts()}")
    batch_counts = result.data.get_counts()
    plot_histogram(batch_counts)

  • Added OpenQuantumProvider, OpenQuantumDevice, and OpenQuantumJob classes implementing the qBraid runtime interface for Open Quantum

    from qbraid.runtime.openquantum import OpenQuantumProvider
    Create SDK key on OpenQuantum.com
    provider = OpenQuantumProvider(client_id="", client_secret="")
    device = provider.get_device("ionq:forte-1")

... (truncated)

Changelog

Sourced from qbraid's changelog.

[0.12.1] - 2026-05-17

Added

  • Added as_batch=True parameter to QbraidDevice.submit() enabling submission of a list of circuits as a single batch job (one API call, one job QRN). QbraidJob.result() returns BatchResult for batch jobs and a single Result for regular jobs. (#1187)

    from qiskit import QuantumCircuit
    from qbraid.runtime import QbraidProvider
    from qbraid.visualization import plot_histogram
    provider = QbraidProvider()
    device = provider.get_device("qbraid:equal1:sim:bell-1")
    assert device.profile.batch_job_support is True
    bell = QuantumCircuit(2)
    bell.h(0)
    bell.cx(0, 1)
    bell.measure_all()
    ghz = QuantumCircuit(3)
    ghz.h(0)
    ghz.cx(0, 1)
    ghz.cx(1, 2)
    ghz.measure_all()
    job = device.run([bell, ghz], as_batch=True, shots=100)
    result = job.result()  # BatchResult
    print(result.num_circuits)  # 2
    for i, circuit_result in enumerate(result.results):
    print(f"Circuit {i}: {circuit_result.data.get_counts()}")
    batch_counts = result.data.get_counts()
    plot_histogram(batch_counts)

  • Added OpenQuantumProvider, OpenQuantumDevice, and OpenQuantumJob classes implementing the qBraid runtime interface for Open Quantum

    from qbraid.runtime.openquantum import OpenQuantumProvider
    Create SDK key on OpenQuantum.com
    provider = OpenQuantumProvider(client_id="", client_secret="")
    device = provider.get_device("ionq:forte-1")
    qasm_str = """
    OPENQASM 3.0;
    include "stdgates.inc";

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [qbraid](https://github.com/qBraid/qBraid) to permit the latest version.
- [Release notes](https://github.com/qBraid/qBraid/releases)
- [Changelog](https://github.com/qBraid/qBraid/blob/main/CHANGELOG.md)
- [Commits](qBraid/qBraid@v0.11.1...v0.12.1)

---
updated-dependencies:
- dependency-name: qbraid
  dependency-version: 0.12.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants