Thomas Robitaille
Thomas Robitaille
As originally mentioned in https://github.com/astropy/astropy-helpers/issues/195, it might be useful to have a way to be strict about requiring public functions, methods, and classes to have docstrings, so that we don't...
If this is to be used beyond Astropy, and given that graphviz is not always installed, I wonder if it would make sense to make the inheritance diagrams opt-in?
We should add more test cases (similar to those added in https://github.com/astropy/sphinx-automodapi/pull/3) that test the following options: * ``:allowed-package-names:`` * ``:inherited-members:`` * ``:no-inherited-members:`` This will increase the test coverage further....
In addition to #13, it would be good to do some profiling to see if there are any easy optimizations, since generating the API docs for a project like Astropy...
When running a documentation build multiple times, even if all the rest is cache, the full API docs get re-generated. We should have a way to cache this, though I...
I'm having issues fitting the 1D box model: ``` import numpy as np import matplotlib.pyplot as plt from astropy.modeling import models, fitting import astropy print(astropy.__path__) # Generate fake data np.random.seed(0)...
### Description Currently when parsing the WCS of a FITS file that has SIP coefficients in the header but no -SIP suffix in the CTYPE, we emit an INFO message:...
### Description When writing out a ``Table`` with string columns containing an underscore to LaTeX, underscores are not escaped, which can cause issues. ### Steps to Reproduce First run: ```python...
For many users, sigma_clip may be where they encounter masked arrays for the first time. It would be nice to improve the docstring for sigma_clip: http://docs.astropy.org/en/stable/api/astropy.stats.sigma_clip.html#astropy.stats.sigma_clip to include a few...
Currently, ``Angle.to_string`` doesn't include a space between the value and unit: ```python In [30]: from astropy.coordinates import Angle In [31]: a = Angle(3, 'deg') In [32]: a.to_string(unit='mas') Out[32]: '1.08e+07mas' ```...