Jacob Hayes
Jacob Hayes
When working with some `ddf`s recently containing integer columns, I noticed a couple issues when slicing column `0`, which is "falsy" - depending on the operation, sometimes I would get...
When a task function has a parameter with a default value, the default value doesn't seem to be passed when submitting the workflow, resulting in an HTTP error. The parameter...
I would like to be able to inspect the version of hera in order to handle cross-version compatibility. I could use `importlib.metadata.version("hera-workflows")`, but it'd be nice if there was a...
## Change Summary Copy ModelField.outer_type_ to subclass field with new default In https://github.com/samuelcolvin/pydantic/pull/3018, I tried to support setting defaults in a subclass that were a subtype of the base class's...
As of [PEP 518](https://www.python.org/dev/peps/pep-0518/), `pyproject.toml` is the preferred way to specify build time dependencies. This way, `pip` will _automatically_ install `numpy` at build time - whether building wheels or a...
Building on top of #71 (required to auto-install numpy in CI), I added a GH Action that uses [cibuildwheel](https://cibuildwheel.readthedocs.io/en/stable/) to build wheels for linux+macos for py3.6+ and upload to pypi....
Hi, I'm trying to install `ont-bonito` into an existing virtualenv, but the package dependencies ([base ones here](https://github.com/nanoporetech/bonito/blob/master/requirements.txt)) are specified quite precisely (`==`), causing conflicts with other packages I'm using. Eg:...
I'd like to track the "namespace" of nested boxes, which is hard to do in a subclass because of the (necessary) recursive conversions during `__init__` and other actions. To handle...
I have some nested Boxes using an overridden `__convert_and_store` in a subclass to convert values to an expected type (eg: I want all values to be an `int` or some...
Hi, I'd like to be able to set some "global" hooks that will be called during Task or Workflow creation that can modify them. For example, my company has: -...