diff --git a/README.md b/README.md index 66ba6934c3b..c3d860732d9 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ develop quantum programs for a variety of applications. [Qualtran]: https://github.com/quantumlib/qualtran [qsim]: https://github.com/quantumlib/qsim -[Stim]: https://github.com/quantumlib/ssim +[Stim]: https://github.com/quantumlib/stim [OpenFermion]: https://github.com/quantumlib/openfermion [OpenFermion-FQE]: https://github.com/quantumlib/OpenFermion-FQE [OpenFermion-PySCF]: https://github.com/quantumlib/OpenFermion-PySCF diff --git a/cirq-core/cirq/transformers/gauge_compiling/cphase_gauge_test.py b/cirq-core/cirq/transformers/gauge_compiling/cphase_gauge_test.py index 87f00de0a4b..0156f02d103 100644 --- a/cirq-core/cirq/transformers/gauge_compiling/cphase_gauge_test.py +++ b/cirq-core/cirq/transformers/gauge_compiling/cphase_gauge_test.py @@ -20,28 +20,23 @@ class TestCPhaseGauge_0_3(GaugeTester): two_qubit_gate = cirq.CZ**0.3 gauge_transformer = CPhaseGaugeTransformer - sweep_must_pass = True class TestCPhaseGauge_m0_3(GaugeTester): two_qubit_gate = cirq.CZ ** (-0.3) gauge_transformer = CPhaseGaugeTransformer - sweep_must_pass = True class TestCPhaseGauge_0_1(GaugeTester): two_qubit_gate = cirq.CZ**0.1 gauge_transformer = CPhaseGaugeTransformer - sweep_must_pass = True class TestCPhaseGauge_m0_1(GaugeTester): two_qubit_gate = cirq.CZ ** (-0.1) gauge_transformer = CPhaseGaugeTransformer - sweep_must_pass = True class TestCPhaseGauge_0_7(GaugeTester): two_qubit_gate = cirq.CZ**0.7 gauge_transformer = CPhaseGaugeTransformer - sweep_must_pass = True diff --git a/cirq-core/cirq/transformers/gauge_compiling/cz_gauge_test.py b/cirq-core/cirq/transformers/gauge_compiling/cz_gauge_test.py index db4eb236c99..5f4869f30b2 100644 --- a/cirq-core/cirq/transformers/gauge_compiling/cz_gauge_test.py +++ b/cirq-core/cirq/transformers/gauge_compiling/cz_gauge_test.py @@ -21,4 +21,3 @@ class TestCZGauge(GaugeTester): two_qubit_gate = cirq.CZ gauge_transformer = CZGaugeTransformer - sweep_must_pass = True diff --git a/cirq-core/cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py b/cirq-core/cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py index 6630b37d5b5..c599b328316 100644 --- a/cirq-core/cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py +++ b/cirq-core/cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py @@ -20,22 +20,18 @@ class TestSpinInversionGauge_0(GaugeTester): two_qubit_gate = cirq.ZZ gauge_transformer = SpinInversionGaugeTransformer - sweep_must_pass = True class TestSpinInversionGauge_1(GaugeTester): two_qubit_gate = cirq.ZZ**0.1 gauge_transformer = SpinInversionGaugeTransformer - sweep_must_pass = True class TestSpinInversionGauge_2(GaugeTester): two_qubit_gate = cirq.ZZ**-1 gauge_transformer = SpinInversionGaugeTransformer - sweep_must_pass = True class TestSpinInversionGauge_3(GaugeTester): two_qubit_gate = cirq.ZZ**0.3 gauge_transformer = SpinInversionGaugeTransformer - sweep_must_pass = True diff --git a/cirq-core/cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py b/cirq-core/cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py index 25450fd2f29..e6e871cf938 100644 --- a/cirq-core/cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py +++ b/cirq-core/cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py @@ -20,10 +20,8 @@ class TestSqrtCZGauge(GaugeTester): two_qubit_gate = cirq.CZ**0.5 gauge_transformer = SqrtCZGaugeTransformer - sweep_must_pass = True class TestAdjointSqrtCZGauge(GaugeTester): two_qubit_gate = cirq.CZ**-0.5 gauge_transformer = SqrtCZGaugeTransformer - sweep_must_pass = True diff --git a/dev_tools/notebooks/isolated_notebook_test.py b/dev_tools/notebooks/isolated_notebook_test.py index 239acfd87fa..5d68e1306e6 100644 --- a/dev_tools/notebooks/isolated_notebook_test.py +++ b/dev_tools/notebooks/isolated_notebook_test.py @@ -85,6 +85,9 @@ "jupyter", # assumed to be part of colab "seaborn~=0.12", + # TODO: remove after the fix of https://github.com/rigetti/qcs-sdk-rust/issues/531 + "qcs-sdk-python<=0.21.12", + "numpy~=1.25", ]