Browse Source

Exclude non-default VENVDIR in Doc builds (#3974)

pull/3972/merge
Ned Deily 8 years ago
committed by GitHub
parent
commit
6129250b74
  1. 3
      Doc/conf.py

3
Doc/conf.py

@ -38,7 +38,8 @@ highlight_language = 'python3'
needs_sphinx = '1.2'
# Ignore any .rst files in the venv/ directory.
exclude_patterns = ['venv/*', 'README.rst']
venvdir = os.getenv('VENVDIR', 'venv')
exclude_patterns = [venvdir+'/*', 'README.rst']
# Options for HTML output

Loading…
Cancel
Save