Skip to content

anywidget@0.9.2

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Feb 17:47
· 295 commits to main since this release
ef267d5

Patch Changes

  • Support Python 3.12 (#441)

  • Add nicer error boundaries with stack traces (#445)

  • feat(experimental): Add @dataclass decorator (#222)

    from anywidget.experimental import dataclass
    
    @dataclass(esm="index.js")
    class Counter:
        value: int = 0
    
    Counter()