You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been working on a Jupyter Book, and thought it would be useful to have a noxfile for it. I added nox, then ran into this (with $CWD for clarity):
$CWD/.nox/build/lib/python3.10/site-packages/jupyter_book/book_template/intro.md:: WARNING: tableofcontents directive in document with no descendants [etoc.tableofcontents]
$CWD/.nox/build/lib/python3.10/site-packages/jupyter_book/book_template/markdown.md:39: ERROR: Unknown interpreted text role "cite".
$CWD/.nox/build/lib/python3.10/site-packages/jupyter_book/book_template/markdown.md:49: ERROR: Unknown directive type "bibliography".
ERROR: Execution Failed with traceback saved in $CWD/_build/html/reports/notebooks.log
It's trying to build the things inside .nox/build/lib/python3.10/site-packages/jupyter_book! I briefly tried a few exclusion patterns, but even execute: exclude_patterns: ['nox'] didn't filter out this file.
Would it be possible to ignore a root .nox file (it's usually in .gitignore, if that helps)? Any thoughts for ways to exclude this? Really don't want it looking inside site-packages for markdown to run.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've been working on a Jupyter Book, and thought it would be useful to have a noxfile for it. I added nox, then ran into this (with
$CWD
for clarity):It's trying to build the things inside
.nox/build/lib/python3.10/site-packages/jupyter_book
! I briefly tried a few exclusion patterns, but evenexecute: exclude_patterns: ['nox']
didn't filter out this file.Would it be possible to ignore a root
.nox
file (it's usually in.gitignore
, if that helps)? Any thoughts for ways to exclude this? Really don't want it looking inside site-packages for markdown to run.Beta Was this translation helpful? Give feedback.
All reactions