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
Not really a bug, so feel free to close without further explanations.
Not too long ago I started seeing this deprecation warning from _tzpath.py:152
DeprecationWarning: open_text is deprecated. Use files() instead. Refer to https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy for migration advice.
with resources.open_text("tzdata", "zones") as f:
The text was updated successfully, but these errors were encountered:
Also fix a couple of attribute errors in less used code paths (in the
branches reporting errors when using unsupported datestyles).
Related: pganssle/zoneinfo#109
A simple way to avoid the warnings would be to use importlib_resources<5.3;python_version<"3.7" in the setup.cfg, as this version of the backport does not raise them.
Not really a bug, so feel free to close without further explanations.
Not too long ago I started seeing this deprecation warning from
_tzpath.py:152
The text was updated successfully, but these errors were encountered: