From e0cc4f2d4070c6b20e34112414d0d91285be7f85 Mon Sep 17 00:00:00 2001 From: "M. Teodoro" Date: Thu, 5 Oct 2023 14:58:25 -0400 Subject: [PATCH] Updates to docs and CI. --- .github/workflows/ci.yml | 2 -- docs/conf.py | 1 - src/stcal/alignment/util.py | 4 ++-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 981ec3a2..43cd6569 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,13 +5,11 @@ on: branches: - main - '*x' - - stcal-alignment tags: - '*' pull_request: branches: - main - - stcal-alignment schedule: # Weekly Monday 9AM build - cron: "0 9 * * 1" diff --git a/docs/conf.py b/docs/conf.py index 5ebcee52..fe87bb19 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,6 @@ def setup(app): "matplotlib": ("https://matplotlib.org/stable", None), "gwcs": ("https://gwcs.readthedocs.io/en/latest/", None), "astropy": ("https://docs.astropy.org/en/stable/", None), - "stdatamodels": ("https://stdatamodels.readthedocs.io/en/latest/", None), } extensions = [ diff --git a/src/stcal/alignment/util.py b/src/stcal/alignment/util.py index 71f7d87a..762be702 100644 --- a/src/stcal/alignment/util.py +++ b/src/stcal/alignment/util.py @@ -800,9 +800,9 @@ def reproject(wcs1, wcs2): Parameters ---------- - wcs1 : `~astropy.wcs.WCS` or `~gwcs.wcs.WCS` + wcs1 : astropy.wcs.WCS or gwcs.wcs.WCS Input WCS objects or transforms. - wcs2 : `~astropy.wcs.WCS` or `~gwcs.wcs.WCS` + wcs2 : astropy.wcs.WCS or gwcs.wcs.WCS Output WCS objects or transforms. Returns