Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update links and dependencies #496

Merged
merged 2 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ Tutorial
.. tip::

`Victor Eijkhout`_ at `TACC`_ authored the book *Parallel
Programming for Science and Engineering*. This book is available
online in `PDF <ppse-pdf_>`_ and `HTML <ppse-html_>`_ formats. The
Programming for Science and Engineering*. This book is `available
online <ppse-book_>`_ in PDF and `HTML <ppse-html_>`_ formats. The
book covers parallel programming with MPI and OpenMP in C/C++ and
Fortran, and MPI in Python using mpi4py.

.. _Victor Eijkhout: https://tacc.utexas.edu/about/directory/victor-eijkhout
.. _Victor Eijkhout: https://tacc.utexas.edu/about/staff-directory/victor-eijkhout
.. _TACC: https://tacc.utexas.edu/
.. _ppse-pdf: https://tinyurl.com/vle335course
.. _ppse-book: https://theartofhpc.com/pcse.html
.. _ppse-html: https://theartofhpc.com/pcse/index.html


Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,10 @@ setenv =
LATEXMKOPTS=-quiet
commands_pre =
{envpython} -m pip uninstall --yes sphinx-rtd-theme
-mv {envbindir}/rst2html5.py {envbindir}/rst2html5
rm -rf {env:OUTDIR}html
commands =
rst2html5.py {env:DOCDIR}index.rst {env:OUTDIR}index.html
rst2html5 {env:DOCDIR}index.rst {env:OUTDIR}index.html
sphinx-build -M html {env:SRCDIR} {env:BLDDIR} -q -E -W -j auto
sphinx-build -M man {env:SRCDIR} {env:BLDDIR} -q -E -W -j auto
sphinx-build -M info {env:SRCDIR} {env:BLDDIR} -q -E -W -j auto
Expand Down