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

Remove deprecated legacy pulse builder commands #11191

Merged
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b7dd20c
deprecated calling gates directly within the pulse builder namespace
MozammilQ Nov 2, 2023
2b9c96c
modified tests
MozammilQ Nov 3, 2023
d86df4f
deprecated active_transpiler_settings, active_circuit_scheduler_setti…
MozammilQ Nov 3, 2023
de5d386
refactor related tests in test/python/transpiler/test_calibrationbuil…
MozammilQ Nov 3, 2023
5048457
added relese note
MozammilQ Nov 3, 2023
48baa23
edited release note
MozammilQ Nov 3, 2023
ff25a61
fixed sphinx error
MozammilQ Nov 3, 2023
0114361
fixed sphinx error
MozammilQ Nov 3, 2023
b8cdf05
changed version from 1.0.0 to 0.46.0
MozammilQ Nov 7, 2023
67f9cca
deprecated arguments default_transpiler_settings, default_circuit_sch…
MozammilQ Nov 7, 2023
a0f791b
deprecated QuantumCircuit type for argument target of qiskit.pulse.bu…
MozammilQ Nov 7, 2023
5fa35ea
altered docstrings
MozammilQ Nov 7, 2023
64d15c1
edited release note
MozammilQ Nov 7, 2023
0019525
altered release note
MozammilQ Nov 8, 2023
b4e6ae3
refactor code
MozammilQ Nov 15, 2023
c980a82
removed deprecated functions, and modified tests
MozammilQ Nov 16, 2023
5153d6e
altered a test
MozammilQ Nov 16, 2023
e02d0c9
modified test
MozammilQ Nov 19, 2023
573fa9a
This commit makrs the complete removal of deprecated functions, and t…
MozammilQ Nov 19, 2023
baf5136
removed deprecated arguments, modified tests, and altered docstrings
MozammilQ Nov 20, 2023
13cca4d
refactor docstrings
MozammilQ Nov 20, 2023
2c85078
refactor code
MozammilQ Nov 20, 2023
43ad34a
lint
MozammilQ Nov 20, 2023
c0734dd
refactor code
MozammilQ Nov 29, 2023
0f333bd
altered release note
MozammilQ Nov 30, 2023
35ffec1
removed circuit_scheduler_settings, with its property, setter and con…
MozammilQ Dec 7, 2023
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
9 changes: 0 additions & 9 deletions qiskit/pulse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@
from qiskit.pulse.builder import (
# Construction methods.
active_backend,
active_transpiler_settings,
active_circuit_scheduler_settings,
build,
num_qubits,
qubit_channels,
Expand Down Expand Up @@ -100,18 +98,11 @@
circuit_scheduler_settings,
frequency_offset,
phase_offset,
transpiler_settings,
# Macros.
macro,
measure,
measure_all,
delay_qubits,
# Circuit instructions.
cx,
u1,
u2,
u3,
x,
)
from qiskit.pulse.channels import (
AcquireChannel,
Expand Down
Loading