Skip to content
Draft
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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
- name: Generate artifact attestation for sdist and wheel(s)
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
with:
subject-path: "dist/*"
subject-path: dist/*
- uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
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

### Added

- Enable testing on Python 3.14 ([#532]) ([**@denialhaag**])
- New `MinimalCodeSwitchingCompiler` class that implements a compiler for minimal-overhead code switching on the logical level. ([#524], [arXiv:2512.04170](https://arxiv.org/abs/2512.04170)) ([**@inctechs**])
- Added `gottesman_encoding_circuit` methods that constructs a stim encoding circuit for a given stabilizer code using the method described in Gottesman's "Surviving as a Quantum Computer in a Classical World" Chapter 6.4.1. ([#486]) ([**@pehamtom**])
- Added class `SteaneNDFTStatePrepSimulator` for simulating non-deterministic state preparation protocols for CSS codes using verification with multiple ancilla states. ([#462]) ([**@pehamtom**])
Expand Down Expand Up @@ -50,6 +51,7 @@ _📚 Refer to the [GitHub Release Notes](https://github.com/munich-quantum-tool
[#524]: https://github.com/munich-quantum-toolkit/qecc/pull/524
[#592]: https://github.com/munich-quantum-toolkit/qecc/pull/592
[#543]: https://github.com/munich-quantum-toolkit/qecc/pull/543
[#532]: https://github.com/munich-quantum-toolkit/qecc/pull/532
[#503]: https://github.com/munich-quantum-toolkit/qecc/pull/503
[#499]: https://github.com/munich-quantum-toolkit/qecc/pull/499
[#486]: https://github.com/munich-quantum-toolkit/qecc/pull/486
Expand Down
4 changes: 1 addition & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@
nox.options.default_venv_backend = "uv"


# TODO(denialhaag): Add 3.14 when all dependencies support it
# https://github.com/munich-quantum-toolkit/qecc/issues/464
PYTHON_ALL_VERSIONS = ["3.10", "3.11", "3.12", "3.13"]
PYTHON_ALL_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"]

if os.environ.get("CI", None):
nox.options.error_on_missing_interpreters = True
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ readme = "README.md"
authors = [
{ name = "Lucas Berent", email = "lucas.berent@tum.de" },
{ name = "Lukas Burgholzer", email = "lukas.burgholzer@tum.de" },
{ name = "Peter-Jan H.S. Derks", email = "peter-janderks@hotmail.com" },
{ name = "Peter-Jan H. S. Derks", email = "peter-janderks@hotmail.com" },
{ name = "Timo Hillmann", email = "timo.hillmann@rwth-aachen.de"},
{ name = "Tom Peham", email = "tom.peham@tum.de" },
{ name = "Ludwig Schmid", email = "ludwig.s.schmid@tum.de" },
Expand Down Expand Up @@ -52,12 +52,16 @@ dependencies = [
"numpy>=1.24.1",
"numpy>=1.26; python_version >= '3.12'",
"numpy>=2.1; python_version >= '3.13'",
"numpy>=2.3.2; python_version >= '3.14'",
"numba>=0.57",
"numba>=0.59; python_version >= '3.12'",
"numba>=0.61; python_version >= '3.13'",
"numba>=0.63.1; python_version >= '3.14'",
"scipy>=1.15.2",
"scipy>=1.16.1; python_version >= '3.14'",
"z3-solver>=4.15.3",
"multiprocess>=0.70.17",
"multiprocess>=0.70.19; python_version >= '3.14'",
"ldpc>=2.3.10",
"stim>=1.14.0",
"pymatching>=2.2.2",
Expand Down
Loading
Loading