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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
with:
clang-version: 20
files-changed-only: true
install-pkgs: "nanobind==2.14.0"
install-pkgs: "nanobind==2.15.0"
setup-python: true
setup-z3: true
cpp-linter-extra-args: "-std=c++20"
Expand Down
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ _If you are upgrading: please see [`UPGRADING.md`](UPGRADING.md#unreleased)._

### Changed

- ⬆️ Update `mqt-core` to version 3.9.0 ([#1116]) ([**@denialhaag**])
- ⬆️ Update `nanobind` to version 2.15.0 ([#1116]) ([**@denialhaag**])
- ♻️ Move output-permutation measurement construction from MQT Core into QMAP
([#1106]) ([**@simon1hofmann**])
- ⬆️ Update `nanobind` to version 2.14.0 ([#1105]) ([**@denialhaag**])
- ⬆️ Update `mqt-core` to version 3.8.0 ([#1093]) ([**@denialhaag**])

## [3.8.0] - 2026-07-09

Expand Down Expand Up @@ -286,10 +286,9 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._

<!-- PR links -->

[#1116]: https://github.com/munich-quantum-toolkit/qmap/pull/1116
[#1106]: https://github.com/munich-quantum-toolkit/qmap/pull/1106
[#1105]: https://github.com/munich-quantum-toolkit/qmap/pull/1105
[#1096]: https://github.com/munich-quantum-toolkit/qmap/pull/1096
[#1093]: https://github.com/munich-quantum-toolkit/qmap/pull/1093
[#1069]: https://github.com/munich-quantum-toolkit/qmap/pull/1069
[#1058]: https://github.com/munich-quantum-toolkit/qmap/pull/1058
[#1057]: https://github.com/munich-quantum-toolkit/qmap/pull/1057
Expand Down
3 changes: 2 additions & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ of changes including minor and patch releases, please refer to the

## [Unreleased]

This release updates the minimum required `mqt-core` version to 3.8.0.
This release updates the minimum required `mqt-core` version to 3.9.0 and
`nanobind` to 2.15.0.

## [3.8.0]

Expand Down
2 changes: 1 addition & 1 deletion bindings/clifford_synthesis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# Licensed under the MIT License

add_mqt_python_binding_nanobind(
add_mqt_python_binding(
QMAP
${MQT_QMAP_TARGET_NAME}-clifford_synthesis-bindings
clifford_synthesis.cpp
Expand Down
2 changes: 1 addition & 1 deletion bindings/hybrid_mapper/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# Licensed under the MIT License

add_mqt_python_binding_nanobind(
add_mqt_python_binding(
QMAP
${MQT_QMAP_TARGET_NAME}-hybrid_mapper-bindings
hybrid_mapper.cpp
Expand Down
2 changes: 1 addition & 1 deletion bindings/na/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

file(GLOB_RECURSE NA_SOURCES **.cpp)

add_mqt_python_binding_nanobind(
add_mqt_python_binding(
QMAP
${MQT_QMAP_TARGET_NAME}-na-bindings
${NA_SOURCES}
Expand Down
2 changes: 1 addition & 1 deletion bindings/sc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
# Licensed under the MIT License

add_mqt_python_binding_nanobind(
add_mqt_python_binding(
QMAP
${MQT_QMAP_TARGET_NAME}-sc-bindings
sc.cpp
Expand Down
6 changes: 3 additions & 3 deletions cmake/ExternalDependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ if(BUILD_MQT_QMAP_BINDINGS)
endif()

# cmake-format: off
set(MQT_CORE_MINIMUM_VERSION 3.8.0
set(MQT_CORE_MINIMUM_VERSION 3.9.0
CACHE STRING "MQT Core minimum version")
set(MQT_CORE_VERSION 3.8.0
set(MQT_CORE_VERSION 3.9.0
CACHE STRING "MQT Core version")
set(MQT_CORE_REV "ae42c97dc7073b8728a8ab23d06aabe4ee25c7e5"
set(MQT_CORE_REV "9d4820d564e585759ada3757950cce9a7f836f1a"
CACHE STRING "MQT Core identifier (tag, branch or commit hash)")
set(MQT_CORE_REPO_OWNER "munich-quantum-toolkit"
CACHE STRING "MQT Core repository owner (change when using a fork)")
Expand Down
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

[build-system]
requires = [
"nanobind~=2.14.0",
"nanobind~=2.15.0",
"vcs-versioning>=2.3.0",
"scikit-build-core>=1.0.3",
"mqt.core~=3.8.0",
"mqt.core~=3.9.0",
]
build-backend = "scikit_build_core.build"

Expand Down Expand Up @@ -55,7 +55,7 @@ classifiers = [
]
requires-python = ">=3.10, != 3.14.1"
dependencies = [
"mqt.core~=3.8.0",
"mqt.core~=3.9.0",
"qiskit[qasm3-import]>=1.0.0",
"rustworkx[all]>=0.16.0",
"typing_extensions>=4.6; python_version < '3.11'",
Expand Down Expand Up @@ -276,7 +276,7 @@ known-first-party = ["mqt.qmap"]
"docs/**" = ["T20"]
"eval/**" = ["T20"]
"noxfile.py" = ["T20", "TID251"]
"*.pyi" = ["D418", "E501", "PYI021"]
"*.pyi" = ["D301", "D418", "E501", "PYI021"]
"*.ipynb" = [
"D", # pydocstyle
"E402", # Allow imports to appear anywhere in Jupyter notebooks
Expand Down Expand Up @@ -336,11 +336,11 @@ before-all = "/opt/python/cp311-cp311/bin/pip install z3-solver==4.12.6"
repair-wheel-command = [
"export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/python/cp311-cp311/lib/python3.11/site-packages/z3/lib",
"""auditwheel repair -w {dest_dir} {wheel} \
--exclude libmqt-core-ir.so.3.8 \
--exclude libmqt-core-qasm.so.3.8 \
--exclude libmqt-core-circuit-optimizer.so.3.8 \
--exclude libmqt-core-ds.so.3.8 \
--exclude libmqt-core-na.so.3.8 \
--exclude libmqt-core-ir.so.3.9 \
--exclude libmqt-core-qasm.so.3.9 \
--exclude libmqt-core-circuit-optimizer.so.3.9 \
--exclude libmqt-core-ds.so.3.9 \
--exclude libmqt-core-na.so.3.9 \
--exclude libspdlog.so.1.17""",
]

Expand Down Expand Up @@ -382,10 +382,10 @@ exclude = [

[dependency-groups]
build = [
"nanobind~=2.14.0",
"nanobind~=2.15.0",
"vcs-versioning>=2.3.0",
"scikit-build-core>=1.0.3",
"mqt.core~=3.8.0",
"mqt.core~=3.9.0",
]
docs = [
"distinctipy>=1.3.4",
Expand All @@ -410,7 +410,7 @@ test = [
"pytest-cov>=7.1.0",
"pytest-sugar>=1.1.1",
"pytest-xdist>=3.8.0",
"mqt.qcec>=3.8.0",
"mqt.qcec>=3.9.0",
"distinctipy>=1.3.4",
"ipywidgets>=8.1.7",
"networkx>=3.2.1",
Expand Down
4 changes: 2 additions & 2 deletions python/mqt/qmap/na/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
#
# Licensed under the MIT License

from . import state_preparation as state_preparation
from . import zoned as zoned
from mqt.qmap.na import state_preparation as state_preparation
from mqt.qmap.na import zoned as zoned
Loading