From ef47dee4bfacaaff507775b7d4739a7901e8d352 Mon Sep 17 00:00:00 2001
From: Paul Sokolovsky <pfalcon@users.sourceforge.net>
Date: Sat, 1 Jul 2017 20:01:05 +0300
Subject: [PATCH] docs/conf.py: Add .venv dir to exclude_patterns.

It's useful to try different Sphinx versions using virtualenv/venv, so
exclude a common venv dir name from Sphinx processing.
---
 docs/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/conf.py b/docs/conf.py
index 0f70417eb..2b20d47ab 100755
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -113,7 +113,7 @@ release = '1.9.1'
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
-exclude_patterns = ['build']
+exclude_patterns = ['build', '.venv']
 
 # The reST default role (used for this markup: `text`) to use for all
 # documents.
-- 
GitLab