Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing qiskit version bound and update a test #312

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ qutip
ddt~=1.4.2
matplotlib>=3.3.0
qiskit-experiments
qiskit_ibm_runtime
pandas # for docs only
pylatexenc>=1.4 # for docs only
ipython<8.13.0 # for docs build with python 3.8
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"numpy>=1.17",
"scipy>=1.4",
"matplotlib>=3.0",
"qiskit<1.0",
"qiskit",
"multiset>=3.0.1",
"sympy>=1.12"
]
Expand Down
3 changes: 2 additions & 1 deletion test/dynamics/pulse/test_pulse_to_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
from qiskit import pulse
from qiskit.pulse import Schedule
from qiskit.pulse.transforms.canonicalization import block_to_schedule
from qiskit.providers.fake_provider import FakeQuito
from qiskit import QiskitError

from qiskit_ibm_runtime.fake_provider import FakeQuito

from qiskit_dynamics.pulse import InstructionToSignals
from qiskit_dynamics.signals import DiscreteSignal

Expand Down
Loading