Skip to content

v0.6.2

Choose a tag to compare

@jesshart jesshart released this 23 Apr 19:23
· 7 commits to main since this release

Changed

  • Lowered Python floor from 3.13 to 3.11. Nothing in the codebase
    actually needed 3.13; the only 3.12+ API in use
    (pathlib.Path.walk() in crawl.py) was swapped for a small
    os.walk adapter. tomllib in config.py pins the floor at 3.11.
    CI now runs the full test suite on 3.11, 3.12, and 3.13. No
    behavior change for existing users; new installs work on any of
    the three supported interpreters.

Install on any of:

  • Python 3.11 (default on Ubuntu 24.04, Debian 12 backports)
  • Python 3.12
  • Python 3.13

All 370 tests pass on all three interpreters locally; CI matrix
enforces that going forward.