You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should do either option 1 or 2. It's useful for users if the notebook works with Python 3.9 because they might be using 3.9 locally. I'm fine with option 1.
The notebook
docs/transpile/create-a-transpiler-plugin.ipynb
is failing in https://github.com/Qiskit/documentation/actions/runs/9485973981/job/26139208772?pr=1537:This is because that syntax was introduced in Python 3.10, but we test the notebooks with Python 3.9 (as that's the lowest version Qiskit supports).
Options to fix this are:
int|None
withOptional[int]
(my preferred choice)from __future__ import annotations
The text was updated successfully, but these errors were encountered: