We are currently using [iso8601](https://pypi.org/project/iso8601/) to parse JSON feed dates. Starting with Python 3.11, [datetime.fromisoformat()](https://docs.python.org/3/library/datetime.html#datetime.datetime.fromisoformat) supports most formats we need. Use datetime.fromisoformat() instead, and remove the iso8601 dependency (including from the install docs).
We are currently using iso8601 to parse JSON feed dates. Starting with Python 3.11, datetime.fromisoformat() supports most formats we need.
Use datetime.fromisoformat() instead, and remove the iso8601 dependency (including from the install docs).