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
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@ repos:
- id: rumdl-fmt
priority: 6

## Format pyproject.toml with pyproject-fmt
- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.29.3
hooks:
- id: pyproject-fmt
priority: 5

## Format and lint Python files with ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.16.6
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
[![PyPI](https://img.shields.io/pypi/v/mqt.problemsolver?logo=pypi&style=flat-square)](https://pypi.org/project/mqt.problemsolver/)
![OS](https://img.shields.io/badge/os-linux%20%7C%20macos%20%7C%20windows-blue?style=flat-square)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![CI](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/problemsolver/ci.yml?branch=main&style=flat-square&logo=github&label=ci)](https://github.com/munich-quantum-toolkit/problemsolver/actions/workflows/ci.yml)
[![CD](https://img.shields.io/github/actions/workflow/status/munich-quantum-toolkit/problemsolver/cd.yml?style=flat-square&logo=github&label=cd)](https://github.com/munich-quantum-toolkit/problemsolver/actions/workflows/cd.yml)
[![Documentation](https://img.shields.io/readthedocs/mqt-problemsolver?logo=readthedocs&style=flat-square)](https://mqt.readthedocs.io/projects/problemsolver)
[![codecov](https://img.shields.io/codecov/c/github/munich-quantum-toolkit/problemsolver?style=flat-square&logo=codecov)](https://codecov.io/gh/munich-quantum-toolkit/problemsolver)

<p align="center">
Expand Down Expand Up @@ -79,7 +83,7 @@ To support this endeavor, please consider:
requests
- Citing the MQT in your publications (see [Cite This](#cite-this))
- Citing our research in your publications (see
[References](https://mqt.readthedocs.io/projects/problemsolver/en/latest/references.html))
[References](https://mqt.readthedocs.io/projects/problemsolver/en/stable/references.html))
- Using the MQT in research and teaching, and sharing feedback and use cases
- Sponsoring us on GitHub: <https://github.com/sponsors/munich-quantum-toolkit>

Expand Down
11 changes: 5 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,11 @@
"python": ("https://docs.python.org/3", None),
"numpy": ("https://numpy.org/doc/stable/", None),
"qiskit": ("https://docs.quantum.ibm.com/api/qiskit", None),
"mqt": ("https://mqt.readthedocs.io/en/latest", None),
"ddsim": ("https://mqt.readthedocs.io/projects/ddsim/en/latest", None),
"qmap": ("https://mqt.readthedocs.io/projects/qmap/en/latest", None),
"qcec": ("https://mqt.readthedocs.io/projects/qcec/en/latest", None),
"qecc": ("https://mqt.readthedocs.io/projects/qecc/en/latest", None),
"syrec": ("https://mqt.readthedocs.io/projects/syrec/en/latest", None),
"mqt": ("https://mqt.readthedocs.io/en/stable", None),
"ddsim": ("https://mqt.readthedocs.io/projects/ddsim/en/stable", None),
"qmap": ("https://mqt.readthedocs.io/projects/qmap/en/stable", None),
"qcec": ("https://mqt.readthedocs.io/projects/qcec/en/stable", None),
"syrec": ("https://mqt.readthedocs.io/projects/syrec/en/stable", None),
}

myst_enable_extensions = [
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def minimums(session: nox.Session) -> None:
session.run("uv", "tree", "--frozen", env=env)


@nox.session(reuse_venv=True)
@nox.session(python="3.14", reuse_venv=True)
def docs(session: nox.Session) -> None:
"""Build the docs. Use "--non-interactive" to avoid serving. Pass "-b linkcheck" to check links."""
parser = argparse.ArgumentParser()
Expand Down
Loading
Loading