This repository was archived by the owner on Nov 11, 2024. It is now read-only.
This repository was archived by the owner on Nov 11, 2024. It is now read-only.
v2.0.2 breaks basic RST functionality. #356
Closed
Description
Consider this docstring:
class SDSSMuNu(ac.BaseCoordinateFrame):
"""SDSS Great Circle Coordinates
Attributes
----------
stripe
SDSS `Stripe Number`_ .
node
Node of the great circle with respect to the celestial equator.
In SDSS, this is almost always RA = 95.0 degrees.
incl
Inclination of the great circle with respect to the celestial
equator.
phi
Counter-clockwise position angle w.r.t. north for an arc
in the +nu direction.
.. _`Stripe Number`: http://www.sdss.org/dr14/help/glossary/#stripe
Parameters
----------
mu : :class:`~astropy.coordinates.Angle`
Angle corresponding to longitude measured along a stripe.
nu : :class:`~astropy.coordinates.Angle`
Angle corresponding to latitude measured perpendicular to a stripe.
Notes
-----
http://www.sdss.org/dr12/algorithms/surveycoords/
"""
After upgrading to v2.0.2, the Stripe Number
link throws a warning:
.../pydl/pydlutils/coord.py:docstring of pydl.pydlutils.coord.SDSSMuNu:34: WARNING: Unknown target name: "stripe number".
And this warning causes python setup.py build_docs -w
to fail.