mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Doc: Keep the venv/* exclude pattern. (GH-15229)
In case it has been previously created.
This commit is contained in:
parent
da27d9b9dc
commit
73e0549701
1 changed files with 4 additions and 2 deletions
|
@ -48,8 +48,10 @@ highlight_language = 'python3'
|
|||
needs_sphinx = '1.8'
|
||||
|
||||
# Ignore any .rst files in the venv/ directory.
|
||||
venvdir = os.getenv('VENVDIR', 'venv')
|
||||
exclude_patterns = [venvdir+'/*', 'README.rst']
|
||||
exclude_patterns = ['venv/*', 'README.rst']
|
||||
venvdir = os.getenv('VENVDIR')
|
||||
if venvdir is not None:
|
||||
exclude_patterns.append(venvdir + '/*')
|
||||
|
||||
# Disable Docutils smartquotes for several translations
|
||||
smartquotes_excludes = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue