diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 947abed24..d010a1296 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -52,5 +52,5 @@ jobs: uses: actions/upload-artifact@v4 with: name: pdf-docs - path: doc/_build/simplepdf + path: doc/_build/simplepdf/ARMI.pdf retention-days: 5 diff --git a/doc/user/inputs.rst b/doc/user/inputs.rst index 918153cc2..2166c5efe 100644 --- a/doc/user/inputs.rst +++ b/doc/user/inputs.rst @@ -1607,7 +1607,7 @@ through ``self.cs``. # User textwrap to split up long words that mess up the table. wrapper = textwrap.TextWrapper(width=25, subsequent_indent='') wrapper2 = textwrap.TextWrapper(width=10, subsequent_indent='') - content = '\n.. list-table:: ARMI Settings\n :header-rows: 1\n :widths: 20 30 15 15\n \n' + content = '\n.. list-table:: ARMI Settings\n :header-rows: 1\n :widths: 20 30 15 15\n :class: ssp-table-wrap\n \n' content += ' * - Name\n - Description\n - Default\n - Options\n' for setting in sorted(cs.values(), key=lambda s: s.name): diff --git a/pyproject.toml b/pyproject.toml index 843f7911a..033b68a7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,7 +116,7 @@ docs = [ "sphinxcontrib-jquery==4.1", # Handle missing jquery errors "jupyter-contrib-nbextensions", # A collections of JS extensions for jupyter notebooks "lxml<5.0.0", # Needed because the dep above is no longer an active project - "sphinx-simplepdf", # Used to make PDF versions of the docs + "sphinx-simplepdf==1.6.0", # Used to make PDF versions of the docs ] [project.scripts]