Skip to content

chameleon 2.34.1

Choose a tag to compare

@crisnahine crisnahine released this 26 Jun 09:43

Fixed

  • The absolute-paths_glob guard now works on Python 3.11. The 2.34.0 fix
    wrapped base.glob(pattern) in a try/except, but Path.glob is lazy on
    Python 3.11 (it raises NotImplementedError during iteration, not at the
    call), so an absolute glob still crashed there. Materialize the matches with
    list(...) inside the guard, mirroring workspace.py, so the exception is
    caught on every supported Python version.