Skip to content

Commit

Permalink
fix doc build requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinolog committed Sep 2, 2017
1 parent ed271c8 commit 37dca99
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import collections
import glob
import os.path
import sys
from sphinx.apidoc import main as sphinx_apidoc_main

with open(
Expand All @@ -27,6 +28,9 @@
) as f:
source = f.read()

PY3 = sys.version_info[:2] > (2, 7)
PY34 = sys.version_info[:2] > (3, 3)


# noinspection PyUnresolvedReferences
def get_simple_vars_from_src(src):
Expand Down

0 comments on commit 37dca99

Please sign in to comment.