From 97b7043f94ff465528e4baa5d981d101d9d8c894 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Sun, 13 Oct 2024 17:25:12 -0400 Subject: [PATCH 1/2] move linkcheck out of main doc build Running linkcheck from github actions causes too many issues with rate limiting or bot-protected sites. Disable it. --- tox.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tox.ini b/tox.ini index 5c4abe9..f4ce1b6 100644 --- a/tox.ini +++ b/tox.ini @@ -38,6 +38,11 @@ deps = -r{toxinidir}/docs/requirements.txt commands = sphinx-build -W -j auto -b html -d docs/build/doctrees docs/source docs/build/html + +[testenv:linkcheck] +deps = + -r{toxinidir}/docs/requirements.txt +commands = sphinx-build -W -j auto -b linkcheck -d docs/build/doctrees docs/source docs/build/linkcheck [testenv:pkglint] From 6313fd37a728cca85f6a2320c52dacc5d200b30c Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Sun, 13 Oct 2024 17:26:03 -0400 Subject: [PATCH 2/2] Revert "remove hyperlink to msys project page" This reverts commit 7f54a54a4919fcddbc2467689f96960515a28957. --- docs/source/install.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/install.rst b/docs/source/install.rst index 8b05549..c7429dd 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -54,9 +54,10 @@ or:: export MSYS_HOME=C:\msys\1.0 source /usr/local/bin/virtualenvwrapper.sh -Depending on your MSYS setup, you may need to install the MSYS mktemp binary -(``https://sourceforge.net/projects/mingw/files/MSYS/``) in the -``MSYS_HOME/bin`` folder. +Depending on your MSYS setup, you may need to install the `MSYS mktemp +binary`_ in the ``MSYS_HOME/bin`` folder. + +.. _MSYS mktemp binary: https://sourceforge.net/projects/mingw/files/MSYS/ PowerShell ----------