Skip to content

Commit 6fe5ecc

Browse files
⬆️🔒️ Lock file maintenance (#995)
This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - "before 4am on monday" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/munich-quantum-toolkit/qmap). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjMuOCIsInVwZGF0ZWRJblZlciI6IjQzLjEyMy44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJweXRob24iXX0=--> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Haag <121057143+denialhaag@users.noreply.github.com>
1 parent b7e8126 commit 6fe5ecc

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

python/mqt/qmap/plugins/qiskit/sc/import_backend.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ def import_target(target: Target) -> Architecture.Properties:
5555
def import_backend(backend: BackendV2) -> Architecture:
5656
"""Import a backend from qiskit.providers.BackendV2."""
5757
arch = Architecture()
58-
arch.name = backend.name
58+
arch.name = str(backend.name)
5959
arch.num_qubits = backend.num_qubits
6060
arch.coupling_map = set(backend.coupling_map.get_edges())
6161
arch.properties = import_target(backend.target)
62-
arch.properties.name = backend.name
62+
arch.properties.name = str(backend.name)
6363

6464
return arch

uv.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)