Skip to content

1.1.1

Latest

Choose a tag to compare

@csingley csingley released this 12 Jun 18:51

Patch release fixing ofxget import error on Python 3.10–3.12.

The 1.1.0 release shipped with argparse._SubParsersAction[Any] as a runtime annotation in ofxget.py, which raises TypeError on Python 3.10–3.12 where that private type is not subscriptable. This release fixes the issue by adding from __future__ import annotations to all library modules, deferring annotation evaluation uniformly across the codebase.