Skip to content

Commit

Permalink
Merge ab0541d into 6d092e3
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Jul 23, 2021
2 parents 6d092e3 + ab0541d commit 5f7fafa
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cron_weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# Testing links in documents is a good example of something to run on a schedule
# to catch links that stop working for some reason.
doc_test:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python to build docs with sphinx
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Legal
* IDL is a registered trademark of `Harris Geospatial Solutions`_.

.. _Python: https://www.python.org
.. _`IDL®`: https://www.harrisgeospatial.com/Software-Technology/IDL
.. _`IDL®`: https://www.l3harrisgeospatial.com/Software-Technology/IDL
.. _idlutils: https://www.sdss.org/dr16/software/idlutils/
.. _SDSS: https://www.sdss.org
.. _`Goddard utilities`: https://idlastro.gsfc.nasa.gov/
Expand All @@ -87,4 +87,4 @@ Legal
.. _SDSS-III: http://www.sdss3.org
.. _`svn repository`: https://www.sdss.org/dr16/software/products/
.. _GitHub: https://github.com
.. _`Harris Geospatial Solutions`: https://www.harrisgeospatial.com/
.. _`Harris Geospatial Solutions`: https://www.l3harrisgeospatial.com/
6 changes: 4 additions & 2 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ PyDL Changelog
1.0.0 (unreleased)
------------------

* No changes yet.
* Update links to documentation (PR `#64`_).

.. _`#64`: https://github.com/weaverba137/pydl/pull/64

1.0.0rc2 (2021-07-22)
---------------------
Expand Down Expand Up @@ -234,7 +236,7 @@ PyDL Changelog
----------------

* Initial tag (made in svn, not visible in git). Visible at
http://www.sdss3.org/svn/repo/pydl/tags/0.1 .
https://svn.sdss.org/public/sdss3/repo/pydl/tags/0.1/ .

.. _`astropy_helpers`: https://github.com/astropy/astropy-helpers
.. _package-template: https://github.com/astropy/package-template
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
# -- Options for linkcheck output -------------------------------------------
linkcheck_retry = 5
linkcheck_ignore = [
r'https://github\.com/astropy/astropy/(?:issues|pull)/\d+',
r'https://github\.com/weaverba137/pydl/(?:issues|pull)/\d+',
]
linkcheck_timeout = 180
linkcheck_anchors = False
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Base API


.. _Python: https://www.python.org
.. _`IDL®`: https://www.harrisgeospatial.com/Software-Technology/IDL
.. _`IDL®`: https://www.l3harrisgeospatial.com/Software-Technology/IDL
.. _idlutils: https://www.sdss.org/dr16/software/idlutils/
.. _SDSS: https://www.sdss.org
.. _`Goddard utilities`: https://idlastro.gsfc.nasa.gov/
Expand All @@ -70,4 +70,4 @@ Base API
.. _SDSS-III: http://www.sdss3.org
.. _`svn repository`: https://www.sdss.org/dr16/software/products/
.. _GitHub: https://github.com
.. _`Harris Geospatial Solutions`: https://www.harrisgeospatial.com/
.. _`Harris Geospatial Solutions`: https://www.l3harrisgeospatial.com/
2 changes: 1 addition & 1 deletion docs/templates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ results were the same, to some numerical precision.

.. _SDSS: https://www.sdss.org
.. _BOSS: https://www.sdss.org/surveys/boss/
.. _`IDL®`: https://www.harrisgeospatial.com/Software-Technology/IDL
.. _`IDL®`: https://www.l3harrisgeospatial.com/Software-Technology/IDL
.. [1] `Bolton, Adam, et al. 2012 AJ 144, 144 <https://ui.adsabs.harvard.edu/abs/2011ApJ...738...20T/abstract>`_.
.. [2] `Tsalmantza, P., Decarli, R., Dotti, M., Hogg, D. W., 2011 ApJ 738, 20
<https://ui.adsabs.harvard.edu/abs/2011ApJ...738...20T/abstract>`_
Expand Down
2 changes: 1 addition & 1 deletion pydl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
the astronomical library functions. Only the bare minimum of IDL_ built-in
functions are implemented to support this.
.. _IDL: https://www.harrisgeospatial.com/Software-Technology/IDL
.. _IDL: https://www.l3harrisgeospatial.com/Software-Technology/IDL
"""

# Packages may add whatever they like to this file, but
Expand Down
2 changes: 1 addition & 1 deletion pydl/file_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def file_lines(path, compress=False):
References
----------
http://www.harrisgeospatial.com/docs/file_lines.html
http://www.l3harrisgeospatial.com/docs/file_lines.html
Examples
--------
Expand Down
4 changes: 4 additions & 0 deletions pydl/median.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ def median(array, width=None, axis=None, even=False):
:func:`scipy.signal.medfilt2d` under the hood, but patches up the
values on the array boundaries to match the return values of the
IDL ``MEDIAN()`` function.
References
----------
http://www.l3harrisgeospatial.com/docs/median.html
"""
import numpy as np
from scipy.signal import medfilt, medfilt2d
Expand Down
2 changes: 1 addition & 1 deletion pydl/pcomp.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class pcomp(object):
References
----------
http://www.harrisgeospatial.com/docs/pcomp.html
http://www.l3harrisgeospatial.com/docs/pcomp.html
Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion pydl/rebin.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def rebin(x, d, sample=False):
References
----------
http://www.harrisgeospatial.com/docs/rebin.html
http://www.l3harrisgeospatial.com/docs/rebin.html
Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion pydl/smooth.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def smooth(signal, owidth, edge_truncate=False):
References
----------
http://www.harrisgeospatial.com/docs/smooth.html
http://www.l3harrisgeospatial.com/docs/smooth.html
Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion pydl/uniq.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def uniq(x, index=None):
References
----------
http://www.harrisgeospatial.com/docs/uniq.html
http://www.l3harrisgeospatial.com/docs/uniq.html
Examples
--------
Expand Down

0 comments on commit 5f7fafa

Please sign in to comment.