From e067040c23b3c71232ec7aac54c2ae09d5553a9e Mon Sep 17 00:00:00 2001 From: Nick Murphy Date: Tue, 23 Jul 2024 17:14:17 -0400 Subject: [PATCH] Minor updates --- docs/contributing/installation_for_development.rst | 2 +- noxfile.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/contributing/installation_for_development.rst b/docs/contributing/installation_for_development.rst index ef5257f9..7d9765bc 100644 --- a/docs/contributing/installation_for_development.rst +++ b/docs/contributing/installation_for_development.rst @@ -48,4 +48,4 @@ For any questions or discussions, you can email us at `xrtpy@cfa.harvard.edu`. .. _PEP-8: https://peps.python.org/pep-0008 .. _Nox: https://nox.thea.codes -.. _Sphinx: https://www.sphinx-doc.org \ No newline at end of file +.. _Sphinx: https://www.sphinx-doc.org diff --git a/noxfile.py b/noxfile.py index 6035ec6b..54757f7f 100644 --- a/noxfile.py +++ b/noxfile.py @@ -42,7 +42,9 @@ def docs(session): sphinx_fail_on_warnings = ["-W", "--keep-going"] sphinx_builder = ["-b", "html"] sphinx_nitpicky = ["-n"] - sphinx_opts = sphinx_paths + sphinx_fail_on_warnings + sphinx_builder + sphinx_nitpicky + sphinx_opts = ( + sphinx_paths + sphinx_fail_on_warnings + sphinx_builder + sphinx_nitpicky + ) session.install(".[dev,docs]") session.run(