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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,9 @@ jobs:
if: fromJSON(needs.change-detection.outputs.run-python-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@d6314c45667c131055a0389afc110e8dedc6da3f # v1.17.11
with:
enable-ty: true
check-stubs: true
enable-mypy: false
enable-ty: true

build-sdist:
name: 🚀 CD
Expand Down
3 changes: 2 additions & 1 deletion .license-tools-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
".*\\.profile",
"uv\\.lock",
"py\\.typed",
".*build.*"
".*build.*",
"qcec_patterns.txt"
]
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning], with the exception that minor rel

### Changed

- ♻️ Auto-generate `pyqcec.pyi` via `nanobind.stubgen` ([#831]) ([**@denialhaag**])
- 🔧 Replace `mypy` with `ty` ([#775], [#825]) ([**@denialhaag**])

## [3.4.0] - 2026-01-13
Expand Down Expand Up @@ -124,6 +125,7 @@ _📚 Refer to the [GitHub Release Notes] for previous changelogs._

<!-- PR links -->

[#831]: https://github.com/munich-quantum-toolkit/qcec/pull/831
[#825]: https://github.com/munich-quantum-toolkit/qcec/pull/825
[#817]: https://github.com/munich-quantum-toolkit/qcec/pull/817
[#796]: https://github.com/munich-quantum-toolkit/qcec/pull/796
Expand Down
2 changes: 2 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This document describes breaking changes and how to upgrade. For a complete list

## [Unreleased]

To comply with established guidelines for attribute names, `mqt.qcec.pyqcec.StateType.random_1Q_basis` has been renamed to `random_1q_basis`.

## [3.4.0]

### Python wheels
Expand Down
39 changes: 0 additions & 39 deletions bindings/application_scheme.cpp

This file was deleted.

4 changes: 2 additions & 2 deletions bindings/bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ namespace nb = nanobind;
using namespace nb::literals;

// forward declarations
void registerApplicationSchema(const nb::module_& m);
void registerApplicationScheme(const nb::module_& m);
void registerConfiguration(const nb::module_& m);
void registerEquivalenceCheckingManager(const nb::module_& m);
void registerEquivalenceCriterion(const nb::module_& m);
void registerStateType(const nb::module_& m);

// NOLINTNEXTLINE(performance-unnecessary-value-param)
NB_MODULE(MQT_QCEC_MODULE_NAME, m) {
registerApplicationSchema(m);
registerApplicationScheme(m);
registerConfiguration(m);
registerEquivalenceCheckingManager(m);
registerEquivalenceCriterion(m);
Expand Down
120 changes: 0 additions & 120 deletions bindings/configuration.cpp

This file was deleted.

120 changes: 0 additions & 120 deletions bindings/equivalence_checking_manager.cpp

This file was deleted.

36 changes: 0 additions & 36 deletions bindings/equivalence_criterion.cpp

This file was deleted.

3 changes: 3 additions & 0 deletions bindings/qcec_patterns.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
_hashable_values_:

_unhashable_values_map_:
Loading
Loading