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
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ permissions:
jobs:
build-sdist:
name: 🐍 Packaging
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2

build-wheel:
name: 🐍 Packaging
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-build.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-build.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2

deploy:
if: github.event_name == 'release' && github.event.action == 'published'
Expand All @@ -39,7 +39,7 @@ jobs:
path: dist
merge-multiple: true
- name: Generate artifact attestation for sdist and wheel(s)
uses: actions/attest@f7c74d28b9d84cb8768d0b8ca14a4bac6ef463e6 # v4.2.0
uses: actions/attest@508db95dd578ae2727ebd6217d5ba78e4fbda05d # v4.2.1
with:
subject-path: "dist/*"
- uses: pypa/gh-action-pypi-publish@ba38be9e461d3875417946c167d0b5f3d385a247 # v1.14.1
- uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33 # v1.14.2
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
jobs:
change-detection:
name: 🔍 Change
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2

python-tests:
name: 🐍 Test
Expand All @@ -29,15 +29,15 @@ jobs:
fail-fast: false
matrix:
runs-on: [ubuntu-24.04, ubuntu-24.04-arm, macos-26, windows-2025]
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-tests.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-tests.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2
with:
runs-on: ${{ matrix.runs-on }}

python-coverage:
name: 🐍 Coverage
needs: [change-detection, python-tests]
if: fromJSON(needs.change-detection.outputs.run-python-tests)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-coverage.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-coverage.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2
permissions:
contents: read
id-token: write
Expand All @@ -46,7 +46,7 @@ jobs:
name: 🐍 Lint
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-python-linter)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2
with:
enable-ty: true
enable-mypy: false
Expand All @@ -55,13 +55,13 @@ jobs:
name: 🚀 CD
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cd)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2

build-wheel:
name: 🚀 CD
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-cd)
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-build.yml@973217bac3ad300d9982fffdd3b37a9b5b3a51ea # v2.2.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-build.yml@579203ef22082fa5d5483412f442e50d0c5ff4a7 # v2.2.2

required-checks-pass: # This job does nothing and is only used for branch protection
name: 🚦 Check
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ repos:

## Check pyproject.toml file
- repo: https://github.com/henryiii/validate-pyproject-schema-store
rev: 2026.07.20
rev: 2026.07.28
hooks:
- id: validate-pyproject
priority: 0
Expand Down Expand Up @@ -111,7 +111,7 @@ repos:

## Format Markdown files with rumdl
- repo: https://github.com/rvben/rumdl-pre-commit
rev: v0.2.43
rev: v0.2.47
hooks:
- id: rumdl
args: [--fix]
Expand All @@ -121,7 +121,7 @@ repos:

## Format and lint Python files with ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.16.0
rev: v0.16.1
hooks:
- id: ruff-check
require_serial: true
Expand All @@ -144,7 +144,7 @@ repos:

## Check Python types with ty
- repo: https://github.com/astral-sh/ty-pre-commit
rev: v0.0.63
rev: v0.0.65
hooks:
- id: ty
args: [--isolated]
Expand Down
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,32 +158,38 @@ _International Symposium on Multiple-Valued Logic (ISMVL)_, 2023.
[[2]](https://arxiv.org/pdf/2308.00029) N. Quetschlich, V. Koch, L. Burgholzer,
and R. Wille. A Hybrid Classical Quantum Computing Approach to the Satellite
Mission Planning Problem.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2023.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2023.

[[3]](https://arxiv.org/pdf/2305.04941) N. Quetschlich, L. Burgholzer, and R.
Wille. Reducing the Compilation Time of Quantum Circuits Using Pre-Compilation
on the Gate Level.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2023.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2023.

[[4]](https://arxiv.org/pdf/2402.12434) N. Quetschlich, M. Soeken, P. Murali,
and R. Wille. Utilizing Resource Estimation for the Development of Quantum
Computing Applications.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2024.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2024.

[[5]](https://arxiv.org/pdf/2408.14539) N. Quetschlich, T. Forster, A.
Osterwind, D. Helms, and R. Wille. Towards Equivalence Checking of Classical
Circuits Using Quantum Computing.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2024.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2024.

[[6]](https://arxiv.org/pdf/2509.02683) T. Forster, N. Quetschlich, M. Soeken,
and R. Wille. Improving Hardware Requirements for Fault-Tolerant Quantum
Computing by Optimizing Error Budget Distributions.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2025.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2025.

[[7]](https://arxiv.org/pdf/2509.02668) T. Forster, N. Quetschlich, and R.
Wille. Quantum Circuit Optimization for the Fault-Tolerance Era: Do We Have to
Start from Scratch?
_IEEE International Conference on Quantum Computing and Engineering (QCE)_, 2025.
_IEEE International Conference on Quantum Computing and Engineering (QCE)_,
2025.

---

Expand Down
74 changes: 70 additions & 4 deletions webpage/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webpage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "24.13.3",
"@types/react": "19.2.17",
"@types/react": "19.2.18",
"@types/react-dom": "^19.0.0",
"eslint": "^10.0.0",
"eslint-config-next": "^16.2.12",
Expand Down
Loading