Skip to content

Commit

Permalink
Bump the submodules group with 1 update (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Dec 1, 2023
1 parent a53c985 commit ad6039e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 44 deletions.
32 changes: 0 additions & 32 deletions .github/matchers/pylint.json

This file was deleted.

2 changes: 1 addition & 1 deletion extern/mqt-core
Submodule mqt-core updated 49 files
+0 −32 .github/matchers/pylint.json
+3 −4 .github/workflows/reusable-python-linter.yml
+10 −14 .pre-commit-config.yaml
+64 −10 README.md
+2 −3 docs/DevelopmentGuide.md
+22 −0 docs/_static/custom.css
+1,120 −0 docs/_static/erc_dark.svg
+1,125 −0 docs/_static/erc_light.svg
+60 −0 docs/_static/logo-bavaria.svg
+2 −0 docs/_static/logo-mqv.svg
+130 −0 docs/_static/tum_dark.svg
+130 −0 docs/_static/tum_light.svg
+61 −0 docs/_templates/page.html
+3 −0 docs/conf.py
+2 −0 docs/index.md
+1 −1 extern/boost/config
+1 −1 extern/boost/multiprecision
+1 −1 extern/googletest
+1 −1 extern/json
+ extern/mqt_dark.png
+ extern/mqt_light.png
+1 −0 include/QuantumComputation.hpp
+0 −6 include/dd/FunctionalityConstruction.hpp
+8 −0 include/dd/Operations.hpp
+68 −0 include/dd/Package.hpp
+8 −1 include/operations/OpType.hpp
+1 −0 include/parsers/qasm_parser/Parser.hpp
+2 −0 include/zx/FunctionalityConstruction.hpp
+8 −11 noxfile.py
+4 −5 pyproject.toml
+0 −30 src/dd/FunctionalityConstruction.cpp
+0 −3 src/mqt/core/__init__.py
+86 −65 src/mqt/core/_core/__init__.pyi
+16 −15 src/mqt/core/_core/operations.pyi
+47 −0 src/mqt/core/io.py
+4 −4 src/mqt/core/plugins/qiskit.py
+8 −1 src/operations/StandardOperation.cpp
+8 −3 src/python/operations/register_operation.cpp
+1 −0 src/python/operations/register_optype.cpp
+22 −0 src/zx/FunctionalityConstruction.cpp
+21 −0 test/algorithms/test_entanglement.cpp
+0 −11 test/algorithms/test_grcs.cpp
+22 −0 test/algorithms/test_wstate.cpp
+14 −2 test/dd/test_dd_functionality.cpp
+1 −2 test/python/constraints.txt
+86 −0 test/python/test_io.py
+10 −0 test/unittests/test_io.cpp
+4 −1 test/unittests/test_qfr_functionality.cpp
+4 −0 test/zx/test_zx_functionality.cpp
11 changes: 0 additions & 11 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,6 @@ def lint(session: nox.Session) -> None:
session.run("pre-commit", "run", "--all-files", *session.posargs)


@nox.session(reuse_venv=True)
def pylint(session: nox.Session) -> None:
"""Run PyLint.
Simply execute `nox -rs pylint` to run PyLint.
"""
session.install(*BUILD_REQUIREMENTS)
session.install("--no-build-isolation", "-ve.", "pylint")
session.run("pylint", "mqt.qcec", *session.posargs)


def _run_tests(
session: nox.Session,
*,
Expand Down

0 comments on commit ad6039e

Please sign in to comment.