From 08e3e264a9aeaa8ace376488d44dee0840ee5423 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Dec 2023 05:27:13 +0000 Subject: [PATCH 1/5] Bump the submodules group with 1 update Bumps the submodules group with 1 update: [extern/mqt-core](https://github.com/cda-tum/mqt-core). - [Release notes](https://github.com/cda-tum/mqt-core/releases) - [Commits](https://github.com/cda-tum/mqt-core/compare/d9ed9b7c967a63f6f853c6be456bef3a4dccd761...14c0fb3524d6302577f219d66fdb9274b788cb27) --- updated-dependencies: - dependency-name: extern/mqt-core dependency-type: direct:production dependency-group: submodules ... Signed-off-by: dependabot[bot] --- extern/mqt-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/mqt-core b/extern/mqt-core index d9ed9b7c..14c0fb35 160000 --- a/extern/mqt-core +++ b/extern/mqt-core @@ -1 +1 @@ -Subproject commit d9ed9b7c967a63f6f853c6be456bef3a4dccd761 +Subproject commit 14c0fb3524d6302577f219d66fdb9274b788cb27 From a4f09436b4770b8413473d1f9decea852974582a Mon Sep 17 00:00:00 2001 From: burgholzer Date: Fri, 1 Dec 2023 11:43:01 +0100 Subject: [PATCH 2/5] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20update=20mqt-core?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- extern/mqt-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/mqt-core b/extern/mqt-core index 14c0fb35..055cdf71 160000 --- a/extern/mqt-core +++ b/extern/mqt-core @@ -1 +1 @@ -Subproject commit 14c0fb3524d6302577f219d66fdb9274b788cb27 +Subproject commit 055cdf716d5ece11c42b71a00d7cc05d2e3df448 From 9c455abb635c0b75bacbde90435e7449a2ba1087 Mon Sep 17 00:00:00 2001 From: burgholzer Date: Fri, 1 Dec 2023 14:06:07 +0100 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=94=A5=20remove=20pylint=20from=20nox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- noxfile.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/noxfile.py b/noxfile.py index 102597fa..7793ff82 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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, *, From 9378e99542c233538106abfeceee861767502cde Mon Sep 17 00:00:00 2001 From: burgholzer Date: Fri, 1 Dec 2023 14:18:42 +0100 Subject: [PATCH 4/5] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20fix=20mqt-core=20submo?= =?UTF-8?q?dule=20versions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- extern/mqt-core | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extern/mqt-core b/extern/mqt-core index 055cdf71..d39959ee 160000 --- a/extern/mqt-core +++ b/extern/mqt-core @@ -1 +1 @@ -Subproject commit 055cdf716d5ece11c42b71a00d7cc05d2e3df448 +Subproject commit d39959ee774f9a8bf5c888958f223529eae43a01 From 2199f79ada4269484abb3a1eebf4f40ae8a28ea7 Mon Sep 17 00:00:00 2001 From: burgholzer Date: Fri, 1 Dec 2023 14:40:21 +0100 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=94=A5=20remove=20matchers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: burgholzer --- .github/matchers/pylint.json | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/matchers/pylint.json diff --git a/.github/matchers/pylint.json b/.github/matchers/pylint.json deleted file mode 100644 index e3a6bd16..00000000 --- a/.github/matchers/pylint.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "problemMatcher": [ - { - "severity": "warning", - "pattern": [ - { - "regexp": "^([^:]+):(\\d+):(\\d+): ([A-DF-Z]\\d+): \\033\\[[\\d;]+m([^\\033]+).*$", - "file": 1, - "line": 2, - "column": 3, - "code": 4, - "message": 5 - } - ], - "owner": "pylint-warning" - }, - { - "severity": "error", - "pattern": [ - { - "regexp": "^([^:]+):(\\d+):(\\d+): (E\\d+): \\033\\[[\\d;]+m([^\\033]+).*$", - "file": 1, - "line": 2, - "column": 3, - "code": 4, - "message": 5 - } - ], - "owner": "pylint-error" - } - ] -}