Daniel Bowring
Daniel Bowring
Currently templates must return strings, which are then parsed into DOM elements. The templates should also be permitted to return DOM elements directly, E.g., ```javascript /* ... */ templates: {...
**Description:** Adds support for reading `.mise.toml` ([docs](https://mise.jdx.dev/configuration.html)) if given as `python-version-file`. Supports the short and longs forms, E.g. ```toml [tools] python = "3.12.2" ``` ```toml [tools] python = { version="3.12.2",...
E.g., ```python @dramatiq.actor def on_abandon_flaky_work(message_data, retry_info): logger.info("Too flaky, will not retry", message_data=message_data, retry_info=retry_info) @dramatiq.actor(max_retries=5, on_retry_exhausted=on_abandon_flaky_work.actor_name) def my_flaky_actor(*args, **kwargs): do_flaky_work(*args, **kwargs) ```
- Fixes support for `lxml>=5.2.0` - Adds explicit support for current python versions - Removes support for EOL'd python versions - Removes support for EOL'd platforms - Fixes build for...
Lists support for current python versions, and removes support for now end-of-life versions. Also runs [`pyupgrade==3.20.0`](https://github.com/asottile/pyupgrade) after each version drop.
Adds support for v5.x of the redis package. Alternative to #22.
- `actions/upload-artifact` v3 is EoL and no longer works ( https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ ) - ~There is an ongoing issues with `docker/setup-qemu-action` breaking `aarch64` builds ( https://github.com/pypa/cibuildwheel/discussions/2256 )~ - Python tests were...