mirror of https://github.com/Qiskit/qiskit.git
13 lines
379 B
YAML
13 lines
379 B
YAML
---
|
|
upgrade:
|
|
- |
|
|
The module within :mod:`qiskit.pulse` responsible for schedule->schedule transformations
|
|
has been renamed from ``reschedule.py`` to ``transforms.py``. The previous import
|
|
path has been deprecated. To upgrade your code::
|
|
|
|
from qiskit.pulse.rescheduler import <X>
|
|
|
|
should be replaced by::
|
|
|
|
from qiskit.pulse.transforms import <X>
|