Qiskit / qiskit-ibmq-provider

Qiskit Provider for accessing the quantum devices and simulators at IBM Quantum.
Apache License 2.0
242 stars 145 forks source link

Replace deprecated threading aliases #1133

Closed hugovk closed 2 years ago

hugovk commented 2 years ago

Summary

Replace deprecated threading aliases.

Details and comments

threading.currentThread and notifyAll were deprecated in Python 3.10 (October 2021) and will be removed in Python 3.12 (October 2023).

Replace with threading.current_thread, notify_all added in Python 2.6 (October 2008).