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
hydra-core 1.2.0 contains two generated files with an obsolete import from typing.io import TextIO. The typing.io namespace has been deprecated since Python 3.8 and will be removed in Python 3.12. (Cf. python/cpython#92871) The imports can simply be replaced with from typing import TextIO:
This was addressed implicitly by the upgrade of antlr from 4.8 to 4.9 (in issue #2155)
which guards the old use of typing.io with a python version check.
🐛 Bug
Description
hydra-core 1.2.0 contains two generated files with an obsolete import
from typing.io import TextIO
. Thetyping.io
namespace has been deprecated since Python 3.8 and will be removed in Python 3.12. (Cf. python/cpython#92871) The imports can simply be replaced withfrom typing import TextIO
:Checklist
System information
The text was updated successfully, but these errors were encountered: