Skip to content

Commit

Permalink
added pyyaml to docs dependencies (#682)
Browse files Browse the repository at this point in the history
* added pyyaml to docs dependencies

* mock out Bio.Seq
  • Loading branch information
tomkinsc committed Oct 2, 2017
1 parent bc78ec1 commit 3aa47b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import mock
MOCK_MODULES = ['scipy', 'pysam', 'Bio', 'Bio.AlignIO', 'Bio.Alphabet',
'Bio.Alphabet.IUPAC', 'Bio.SeqIO', 'Bio.Data.IUPACData',
'pybedtools', 'pybedtools.BedTool']
'Bio.Seq', 'pybedtools', 'pybedtools.BedTool']
for mod_name in MOCK_MODULES:
sys.modules[mod_name] = mock.Mock()

Expand Down
1 change: 1 addition & 0 deletions requirements-py-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ Sphinx==1.4.4
sphinx-argparse==0.1.15
sphinx_rtd_theme==0.1.9
matplotlib==1.5.3
PyYAML==3.11

0 comments on commit 3aa47b0

Please sign in to comment.