Skip to content

v0.2.4

Choose a tag to compare

@github-actions github-actions released this 14 Jun 19:02
Immutable release. Only release title and notes can be modified.

Fixed

  • Never reorder a definition across a side-effecting statement. A bare statement such as
    sys.path.insert(0, str(REPO_ROOT)) is now a barrier, and sorting happens only
    within each segment between barriers, so a constant the statement uses is no longer
    hoisted after it (which raised NameError).