Thomas Robitaille
Thomas Robitaille
While setting up tests on CircleCI, I ran into the following error: ``` ImportError: E Could not load requested Qt binding. Please ensure that E PyQt4 >= 4.7, PyQt5 or...
Once https://github.com/matplotlib/matplotlib/pull/12053 is in a released version, we can start using the timer functionality with the MacOS X backend.
At the moment we are pinning freetype in the Travis config. We should use docker images like those used for the Astropy project to make it easier to test in...
This needs to be added to the README
We could optionally post-process density maps by convolving them with marker shapes to make isolated points clearer and to provide a result equivalent to what ax.scatter would give.
The docstring for ``ImageFileCollection.hdus`` mentions that ``HDUList`` objects are returned, but I think this should be ``PrimaryHDU`` or ``ImageHDU`` depending on the ``ext_index``.
Astropy has ``M_bol`` and ``m_bol`` objects in the same sub-package, and this causes issues when using sphinx-automodapi because MacOS X is case-insensitive meaning that the .rst pages for each of...
In astropy core, we need to do horrendous things like: https://github.com/astropy/astropy/blob/46ca59e9a0bfa3b6687411ea7a6364fdebf91914/astropy/visualization/wcsaxes/patches.py#L17-L26 because sometimes Matplotlib deprecate properties - however because those are custom properties and not regular properties, we make use...
Let's consider the following class hierarchy: ``SpectralAxis(SpectralCoord(SpectralQuantity(Quantity(ndarray))))`` - it would be nice to have a way to document ``SpectralAxis``, including all the methods on ``SpectralCoord`` and ``SpectralQuantity``, but ignoring ``Quantity``...
In automodsumm, we automatically check whether a ``references.txt`` file is present for the submodule being documented and if so injects it into every single docstring for that module: https://github.com/astropy/sphinx-automodapi/blob/master/sphinx_automodapi/automodsumm.py#L635 This...