We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ae9dee4 + cb35067 commit 12edb3bCopy full SHA for 12edb3b
2 files changed
.travis.yml
@@ -11,7 +11,7 @@ services:
11
before_install:
12
- docker build -t jsonschema2db .
13
# Make sure Sphinx works
14
- - pip install . sphinx
+ - pip install sphinx
15
- sphinx-build -M html docs/ docs/_build/ -W
16
17
script:
docs/conf.py
@@ -15,7 +15,6 @@
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.pardir))
18
-import jsonschema2db # NOQA: make sure it works
19
20
21
# -- Project information -----------------------------------------------------
@@ -118,6 +117,8 @@
118
117
]
119
}
120
+# Make it possible to build doc without dependencies
121
+autodoc_mock_imports = ['change_case', 'iso8601', 'psycopg2']
122
123
# -- Extension configuration -------------------------------------------------
124
0 commit comments