From 377c5c7707615f93f4bbe2b4e30ee4d183501560 Mon Sep 17 00:00:00 2001 From: Thierry Martinez Date: Mon, 22 Jun 2026 15:38:00 +0200 Subject: [PATCH] Plugins moved to TeamGraphix The plugins `graphix-pyzx`, `graphix-stim-backend`, and `graphix-stim-compiler` have now been transferred to the GitHub organization TeamGraphix, rather than being hosted under `thierry-martinez` and `qat-inria`. This change was suggested by Mateo's comment: https://github.com/TeamGraphix/graphix/pull/511#pullrequestreview-4370560617 --- README.md | 6 +++--- noxfile.py | 13 +++++-------- 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9a4b61cee..1fbc0bfeb 100644 --- a/README.md +++ b/README.md @@ -88,10 +88,10 @@ state_out = pattern.simulate_pattern(backend="statevector") - [`graphix-ibmq`](https://github.com/TeamGraphix/graphix-ibmq): pattern transpiler for IBMQ / `qiskit` - [`graphix-perceval`](https://github.com/TeamGraphix/graphix-perceval): pattern transpiler for Quandela's `perceval` simulator and QPU -- [`graphix-pyzx`](https://github.com/thierry-martinez/graphix-pyzx): conversion between open graphs and PyZX diagrams +- [`graphix-pyzx`](https://github.com/TeamGraphix/graphix-pyzx): conversion between open graphs and PyZX diagrams - [`graphix-qasm-parser`](https://github.com/TeamGraphix/graphix-qasm-parser): a plugin for parsing OpenQASM circuit. -- [`graphix-stim-backend`](https://github.com/thierry-martinez/graphix-stim-backend): `stim` backend for efficient Clifford pattern simulation -- [`graphix-stim-compiler`](https://github.com/qat-inria/graphix-stim-compiler): `stim` backend for efficient compilation of Clifford maps. +- [`graphix-stim-backend`](https://github.com/TeamGraphix/graphix-stim-backend): `stim` backend for efficient Clifford pattern simulation +- [`graphix-stim-compiler`](https://github.com/TeamGraphix/graphix-stim-compiler): `stim` backend for efficient compilation of Clifford maps. - [`graphix-symbolic`](https://github.com/TeamGraphix/graphix-symbolic): parameterized patterns with symbolic simulation ## Related packages diff --git a/noxfile.py b/noxfile.py index 16d37bf43..244af5973 100644 --- a/noxfile.py +++ b/noxfile.py @@ -95,20 +95,17 @@ class ReverseDependency: @nox.parametrize( "package", [ - ReverseDependency( - "https://github.com/thierry-martinez/graphix-stim-backend", branch="fix/graphix_498_remove_pauli" - ), + ReverseDependency("https://github.com/TeamGraphix/graphix-stim-backend"), ReverseDependency("https://github.com/TeamGraphix/graphix-symbolic"), ReverseDependency("https://github.com/TeamGraphix/graphix-qasm-parser"), + ReverseDependency("https://github.com/TeamGraphix/graphix-ibmq", doctest_modules=False), + ReverseDependency("https://github.com/TeamGraphix/graphix-stim-compiler"), + ReverseDependency("https://github.com/TeamGraphix/graphix-pyzx"), ReverseDependency( - "https://github.com/thierry-martinez/veriphix", + "https://github.com/qat-inria/veriphix", doctest_modules=False, install_target=".[dev]", - branch="fix/graphix_498_remove_pauli", ), - ReverseDependency("https://github.com/TeamGraphix/graphix-ibmq", doctest_modules=False), - ReverseDependency("https://github.com/qat-inria/graphix-stim-compiler", branch="ps_dim"), - ReverseDependency("https://github.com/thierry-martinez/graphix-pyzx", branch="pyzx_from_graphix"), ], ) def tests_reverse_dependencies(session: Session, package: ReverseDependency) -> None: