Skip to content

Commit

Permalink
Merge pull request #110 from zapatacomputing/dev
Browse files Browse the repository at this point in the history
Merge dev to main
  • Loading branch information
mstechly authored Jun 23, 2022
2 parents 0c1c941 + f406e2f commit 9683bba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
setup_requires=["setuptools_scm~=6.0"],
install_requires=[
"qiskit>=0.28, <0.34",
"qiskit-ibmq-provider~=0.15",
Expand Down
2 changes: 1 addition & 1 deletion tests/qeqiskit/noise/basic_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class TestBasic(unittest.TestCase):
def setUp(self):
self.ibmq_api_token = os.getenv("ZAPATA_IBMQ_API_TOKEN")
self.all_devices = ["ibmq_santiago"]
self.all_devices = ["ibm_nairobi"]
self.T_1 = 10e-7
self.T_2 = 30e-7
self.t_step = 10e-9
Expand Down
4 changes: 2 additions & 2 deletions tests/qeqiskit/simulator/simulator_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def sampling_simulator(request):
def noisy_simulator(request):
ibmq_api_token = os.getenv("ZAPATA_IBMQ_API_TOKEN")
noise_model, connectivity = get_qiskit_noise_model(
"ibmq_santiago", api_token=ibmq_api_token
"ibm_nairobi", api_token=ibmq_api_token
)

return QiskitSimulator(
Expand Down Expand Up @@ -178,7 +178,7 @@ def test_expectation_value_with_noisy_simulator(self, noisy_simulator):
def test_optimization_level_of_transpiler(self):
# Given
noise_model, connectivity = get_qiskit_noise_model(
"ibmq_santiago", api_token=os.getenv("ZAPATA_IBMQ_API_TOKEN")
"ibm_nairobi", api_token=os.getenv("ZAPATA_IBMQ_API_TOKEN")
)
n_samples = 8192
simulator = QiskitSimulator(
Expand Down

0 comments on commit 9683bba

Please sign in to comment.