Skip to content

Commit ce2f16d

Browse files
committed
Update mqt-core and nanobind
1 parent 4aadfec commit ce2f16d

File tree

5 files changed

+42
-48
lines changed

5 files changed

+42
-48
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
clang-version: 20
156156
cmake-args: -DBUILD_MQT_QMAP_BINDINGS=ON
157157
files-changed-only: true
158-
install-pkgs: "nanobind==2.10.2"
158+
install-pkgs: "nanobind==2.11.0"
159159
setup-python: true
160160
setup-z3: true
161161
cpp-linter-extra-args: "-std=c++20"

bindings/qmap_patterns.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

noxfile.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ def stubs(session: nox.Session) -> None:
205205
)
206206

207207
package_root = Path(__file__).parent / "python" / "mqt" / "qmap"
208-
pattern_file = Path(__file__).parent / "bindings" / "qmap_patterns.txt"
209208

210209
session.run(
211210
"python",
@@ -215,8 +214,6 @@ def stubs(session: nox.Session) -> None:
215214
"--include-private",
216215
"--output-dir",
217216
str(package_root),
218-
"--pattern-file",
219-
str(pattern_file),
220217
"--module",
221218
"mqt.qmap.na",
222219
"--module",

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
[build-system]
1010
requires = [
11-
"nanobind~=2.10.2",
11+
"nanobind~=2.11.0",
1212
"setuptools-scm>=9.2.2",
1313
"scikit-build-core>=0.11.6",
14-
"mqt.core==3.4.0",
14+
"mqt.core~=3.4.1",
1515
]
1616
build-backend = "scikit_build_core.build"
1717

@@ -51,7 +51,7 @@ classifiers = [
5151
]
5252
requires-python = ">=3.10, != 3.14.1"
5353
dependencies = [
54-
"mqt.core==3.4.0",
54+
"mqt.core~=3.4.1",
5555
"qiskit[qasm3-import]>=1.0.0",
5656
"rustworkx[all]>=0.16.0",
5757
"typing_extensions>=4.6; python_version < '3.11'",
@@ -385,10 +385,10 @@ exclude = [
385385

386386
[dependency-groups]
387387
build = [
388-
"nanobind~=2.10.2",
388+
"nanobind~=2.11.0",
389389
"setuptools-scm>=9.2.2",
390390
"scikit-build-core>=0.11.6",
391-
"mqt.core==3.4.0",
391+
"mqt.core~=3.4.1",
392392
]
393393
docs = [
394394
"distinctipy>=1.3.4",

0 commit comments

Comments
 (0)