Alex Ford
Alex Ford
Slurm and PBS use block comments of the form [`#SBATCH`](https://slurm.schedmd.com/sbatch.html) or [`#PBS`](http://docs.adaptivecomputing.com/torque/4-0-2/Content/topics/commands/qsub.htm) immediately following the `#!` header to provide default configuration parameters for a batch scheduler. Unfortunately, these tools don't...
`timestr` parsing relies on a series of time format regexes, `re.match`-ed against the timestr. `re.match` returns a match for a prefix match, which is a desired behavior in this case....
Wow. This project is amazing. 👏 👏 👏 Is is possible to include unique step ids in the expanded plan, so that step outputs in `includes:` template? As a motivating...
Hi, great plugin! 👏 It feels like there's a significant hole in this space for programmatic-like enforcement of sane markdown formatting. AFAIK, none of the existing markdown auto-formatters support semantic-ish...
**Is your feature request related to a problem? Please describe.** VSCode provides a reasonably high quality outline view, which I _believe_ is driven by a combination of range-base heuristics https://github.com/Microsoft/language-server-protocol/issues/132,...
# Summary Spike implementation for #945. Goals: - [ ] This is silent no-op for "normal" users of `attrs` not using `alias`. Libraries building on `attrs` *may* use `alias` to...
[PEP681](https://peps.python.org/pep-0681/) introduces an optional `alias` parameter to field descriptors, which specifies an alternative `__init__` name for the member. This is not implemented in dataclasses, but is [implemented in pydantic](https://pydantic-docs.helpmanual.io/usage/schema/#field-customization). It...
`pyright` is adding support for `attrs` classes in static type checking through a source-level extension mechanism called [dataclass transforms](https://github.com/microsoft/pyright/blob/master/specs/dataclass_transforms.md). This will provide support the strict-subset of `attrs` class semantics implemented...
### TLDR It would be very useful to extract the `__annotations__` handling logic currently in [`_transform_attrs`](https://github.com/python-attrs/attrs/blob/master/src/attr/_make.py#L296) into a standalone function that can be used to convert annotations into `_CountingAttr`s and...
The Tensorboard hparams plugin, included in tensorboard 1.14+, uses POST requests to access experiment information. The 0.1.10 of jupyter_tensorboard only provides a GET handler, breaking the hparams Tensorboard view. Expand...