Skip to content

Update qbraid requirement from <0.11.0,>=0.10.0 to >=0.10.0,<0.12.0#80

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/qbraid-gte-0.10.0-and-lt-0.12.0
Open

Update qbraid requirement from <0.11.0,>=0.10.0 to >=0.10.0,<0.12.0#80
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/pip/qbraid-gte-0.10.0-and-lt-0.12.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Updates the requirements on qbraid to permit the latest version.

Release notes

Sourced from qbraid's releases.

qBraid-SDK 0.11.0

Release 0.11.0 (Feb 8, 2026)

Summary

Improved / Modified

Introduced several changes primarily focused on standardizing program serialization using the new Program schema from qbraid-core, refactoring the analog/ahs program modules, and updating dependencies for compatibility with qBraid Platform V2:

  • All serialize methods in program classes (analog, annealing, gate_model, etc.) now return a Program object from qbraid_core.services.runtime.schemas, replacing custom dictionary formats. This ensures a consistent API for program submission across all quantum program types.
  • The ahs module has been renamed to analog, with all relevant class and import names updated (e.g., AHSEncoderAnalogHamiltonianEncoder). This includes file renames and updates to __init__.py, ensuring clarity and alignment with terminology.
  • The ExperimentType, JobStatus, and DeviceStatus enums are now imported directly from qbraid_core, removing the local definition and reducing duplication.

Dependencies

  • Upgraded to qbraid-core>=0.2.0 to support qBraid Platform migration to V2 endpoints. See migration guide.
Changelog

Sourced from qbraid's changelog.

[0.11.0] - 2026-02-08

Improved / Modified

Introduced several changes primarily focused on standardizing program serialization using the new Program schema from qbraid-core, refactoring the analog/ahs program modules, and updating dependencies for compatibility with qBraid Platform V2:

  • All serialize methods in program classes (analog, annealing, gate_model, etc.) now return a Program object from qbraid_core.services.runtime.schemas, replacing custom dictionary formats. This ensures a consistent API for program submission across all quantum program types.
  • The ahs module has been renamed to analog, with all relevant class and import names updated (e.g., AHSEncoderAnalogHamiltonianEncoder). This includes file renames and updates to __init__.py, ensuring clarity and alignment with terminology.
  • The ExperimentType, JobStatus, and DeviceStatus enums are now imported directly from qbraid_core, removing the local definition and reducing duplication.

Dependencies

  • Upgraded to qbraid-core>=0.2.0 to support qBraid Platform migration to V2 endpoints. See migration guide.

[0.10.2] - 2026-02-08

Deprecated

  • Deprecated qBraid V1 quantum jobs endpoints in favor of new V2 endpoints. See the API migration guide.

Which SDK version do I need?

Use case Install
Access legacy jobs (read results from a downloaded JSON file) pip install qbraid==0.10.2
Submit new quantum jobs through qBraid pip install qbraid>=0.11.0

Accessing legacy jobs: Download your jobs data from https://account-v2.qbraid.com/quantum-jobs, then use qBraid-SDK 0.10.2 to load and inspect results:

from qbraid.runtime import QbraidProvider, QbraidJob
provider = QbraidProvider(legacy_jobs_path="/path/to/legacy-qbraid-jobs.json")
job = QbraidJob("qbraid_device_id-jovyan-qjob-123abcmel6e9scpfm1zg", client=provider.client)
print(job.status())
<COMPLETED: 'job has successfully run'>
result = job.result()
print(result.details["metadata"]["openQasm"])
'OPENQASM 2.0;\ninclude "qelib1.inc";\n\nqreg q[1];\ncreg c[1];\n\nmeasure q[0] -> c[0];'
print(result.data.get_counts())
{'0': 99, '1': 1}

Submitting new jobs: As of February 8th, job submission via the native QbraidProvider requires qBraid-SDK 0.11.0 or later. Versions below 0.11.0 can no longer submit jobs to qBraid devices.

These changes apply only to job submission and management via the qBraid API. The AWS, Azure, IonQ, and OQC runtime providers are unaffected.

... (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.10.0...v0.11.0)

---
updated-dependencies:
- dependency-name: qbraid
  dependency-version: 0.11.0
  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 Feb 16, 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

Comments