Dan D'Avella
Dan D'Avella
This enables library providers to optionally implement pagination when using the search API. The motivation for this is the fact that currently `Mopidy-Local` only returns 100 results per search query,...
Currently the same block manager is used for all writes of the same `AsdfFile` object, and it retains state between calls to `write_to`. This is not good because it leads...
ASDF trees are currently validated on assignment. For example: ```python af = AsdfFile() af.tree = {'data': numpy.array( ... )} ``` PR #310 attempts to extend this to all top-level tree...
As mentioned in #638, the documentation alludes to the fact that it should be possible to stream data to external files (see [here](https://asdf.readthedocs.io/en/latest/asdf/arrays.html#)): > An ASDF writer may stream a...
This issue should be used to track any deprecated features that will need to be removed entirely in the 3.0 release. * [ ] Remove the `AsdfFile.open` method (deprecated in...
There are some shenanigans in there that should be addressed. Namely, the manipulation of `self._fd` is a cause for concern: https://github.com/spacetelescope/asdf/blob/32abe89ce024ec93b838bdf684a74662a83ee0f0/asdf/asdf.py#L1088-L1095
This PR closes #391. By updating `ruamel.yaml` it appears that we can remove some older logic in `asdf` that provided handling for `omap` types. It looks like `pyyaml` handled those...
http://yaml.readthedocs.io/en/latest/pyyaml.html https://pypi.python.org/pypi/ruamel.yaml `ruamel.yaml` appears to be under active development, whereas `pyyaml` has not been updated since 2016. It might be worth considering whether we should migrate to a newer library,...