diff --git a/docs/tutorials/calibrations.rst b/docs/tutorials/calibrations.rst index 2fdbf621ec..d3d5967850 100644 --- a/docs/tutorials/calibrations.rst +++ b/docs/tutorials/calibrations.rst @@ -195,8 +195,8 @@ Run the calibration experiment: The instance of ``calibrations`` has been automatically updated with the measured frequency, as shown below. In addition to the columns shown below, ``calibrations`` also -store the group to which a value belongs, whether a values is valid or not and the -experiment id that produce a value. +stores the group to which a value belongs, whether a value is valid or not, and the +experiment id that produced a value. .. jupyter-execute:: diff --git a/qiskit_experiments/calibration_management/__init__.py b/qiskit_experiments/calibration_management/__init__.py index 82be9ae50d..d04e8eb064 100644 --- a/qiskit_experiments/calibration_management/__init__.py +++ b/qiskit_experiments/calibration_management/__init__.py @@ -23,7 +23,7 @@ otherwise indicated. Calibrating qubit setups is the task of finding the pulse shapes and parameter -values that maximizes the fidelity of the resulting quantum operations. This +values that maximize the fidelity of the resulting quantum operations. This therefore requires experiments which are analyzed to extract parameter values. Furthermore, the resulting parameter values and schedules must be managed. The calibration management module in Qiskit experiments allows users to manage diff --git a/requirements-dev.txt b/requirements-dev.txt index 3ba0a3a7ec..24c7719517 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,4 @@ -qiskit-terra>=0.45.0 +qiskit>=0.45.0 black~=22.0 fixtures stestr diff --git a/requirements-extras.txt b/requirements-extras.txt index 25689a0858..a1fc84cc89 100644 --- a/requirements-extras.txt +++ b/requirements-extras.txt @@ -1,5 +1,5 @@ qiskit-ibm-provider>=0.6.1 # for submitting experiments to backends through the IBM provider cvxpy>=1.3.2 # for tomography scikit-learn # for discriminators -qiskit-aer>=0.11.0,<=0.12.2 # temporary version pin until 0.13.1 release +qiskit-aer>=0.11.0 qiskit_dynamics>=0.4.0 # for the PulseBackend diff --git a/test/library/tomography/tomo_utils.py b/test/library/tomography/tomo_utils.py index 1304876bb9..2a1e75b9ec 100644 --- a/test/library/tomography/tomo_utils.py +++ b/test/library/tomography/tomo_utils.py @@ -87,9 +87,7 @@ def readout_noise_model(num_qubits, seed=None): p1g0s = 0.15 * rng.random(num_qubits) p0g1s = 0.3 * rng.random(num_qubits) amats = np.stack([[1 - p1g0s, p1g0s], [p0g1s, 1 - p0g1s]]).T - # Set `basis_gates` so that reset is included. - # See https://github.com/Qiskit/qiskit-aer/issues/1975 - noise_model = NoiseModel(basis_gates=["id", "rz", "sx", "cx", "reset"]) + noise_model = NoiseModel() for i, amat in enumerate(amats): noise_model.add_readout_error(amat.T, [i]) return noise_model